mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
- chore: increase to 9.7.0 - reconcile with main after rebase - chore: reconcile fixes to containers.twig from main after rebase - refactor(layout): increment CSS version from v2 to v3 Signed-off-by: ernolf <raphael.gradenwitz@googlemail.com>
16 lines
No EOL
523 B
Twig
16 lines
No EOL
523 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>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
<button id="theme-toggle" onclick="toggleTheme()"><span id="theme-icon"/></button>
|
|
<script type="text/javascript" src="toggle-dark-mode.js"></script>
|
|
</body>
|
|
</html> |