website-risg/templates/index.html

22 lines
466 B
HTML
Raw Normal View History

2024-02-19 18:11:02 +01:00
<html lang="de" data-theme="dark">
2024-02-20 13:03:06 +01:00
{{head}}
2024-02-19 22:08:57 +01:00
<body>
2024-02-20 13:03:06 +01:00
{{header}}
2024-02-19 22:08:57 +01:00
<main class="container">
2024-02-21 14:39:20 +01:00
<input
id="filter-js"
type="search"
name="search"
placeholder="Suchen"
aria-label="Suchen"
2024-02-21 14:54:00 +01:00
autofocus
2024-02-21 14:39:20 +01:00
/>
2024-02-19 22:08:57 +01:00
<ol>
{{content}}
</ol>
</main>
2024-02-20 13:03:06 +01:00
{{footer}}
2024-02-19 22:08:57 +01:00
<script src="app.js"></script>
</body>
2024-02-17 09:44:08 +01:00
</html>