mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-21 02:40:09 +00:00
24 lines
814 B
Twig
24 lines
814 B
Twig
<html lang="en">
|
|
<head>
|
|
<title>AIO</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="stylesheet" href="logs.css">
|
|
<link rel="icon" href="img/favicon.png">
|
|
<script src="log-load.js?v1"></script>
|
|
</head>
|
|
<body data-container-id="{{ id }}">
|
|
<div id="floating-box">
|
|
<div class="loader"></div>
|
|
<div id="autoloading-box">
|
|
<div>
|
|
Automatic loading of new log data is
|
|
<span id="autoloading-status">enabled</span>.
|
|
</div>
|
|
<button id="autoloading-control">Disable</button>
|
|
</div>
|
|
</div>
|
|
<pre>{{ logContent }}</pre>
|
|
</body>
|
|
</html>
|