mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 19:44:31 +08:00
3f3ae167e9
Signed-off-by: ernolf <raphael.gradenwitz@googlemail.com>
21 lines
633 B
Twig
21 lines
633 B
Twig
<html>
|
|
<head>
|
|
<title>AIO</title>
|
|
<link rel="stylesheet" href="/style.css?v3" media="all" />
|
|
<link rel="icon" href="/img/favicon.png">
|
|
<script type="text/javascript" src="forms.js"></script>
|
|
<script type="text/javascript" src="toggle-dark-mode.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
<div id="overlay">
|
|
<div class="loader"></div>
|
|
</div>
|
|
<button id="theme-toggle" onclick="toggleTheme()">
|
|
<span id="theme-icon"></span>
|
|
</button>
|
|
</body>
|
|
</html>
|