2024-09-15 11:48:21 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="it">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<title>{% block title %}{% endblock %}</title>
|
|
|
|
<link
|
|
|
|
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
|
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
2024-09-15 13:55:39 +00:00
|
|
|
<link rel="icon" type="image/png" href="/static/favicon.png" />
|
2024-09-15 14:41:48 +00:00
|
|
|
<link rel="manifest" href="/static/app.webmanifest" />
|
|
|
|
<script async src="https://cdn.jsdelivr.net/npm/pwacompat" crossorigin="anonymous"></script>
|
2024-09-15 11:48:21 +00:00
|
|
|
{% block head %}{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main class="container">{% block content %}{% endblock %}</main>
|
|
|
|
<footer class="container">
|
|
|
|
<p>
|
|
|
|
Codice rilasciato sotto licenza
|
|
|
|
<a
|
|
|
|
href="https://git.riefolo.me/mariano/orario-scolastico-itet/src/branch/master/LICENSE"
|
|
|
|
target="_blank"
|
|
|
|
>MPL 2.0</a
|
|
|
|
>
|
|
|
|
</p>
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|