website-risg/templates/index.html

23 lines
398 B
HTML
Raw Normal View History

2024-02-17 09:44:08 +01:00
<html>
<head>
2024-02-17 10:26:17 +01:00
<link rel="stylesheet" href="pico.min.css" />
2024-02-17 10:15:15 +01:00
<link rel="stylesheet" href="style.css" />
2024-02-17 15:58:36 +01:00
<meta charset="UTF-8">
2024-02-17 09:44:08 +01:00
</head>
<body>
2024-02-17 17:06:04 +01:00
<header>
<div class="container">
<a href="/" title="Link zur Startseite">
<strong>RIS</strong>
<span>parser</span>
</a>
</div>
</header>
<main class="container">
2024-02-17 16:11:16 +01:00
<ol>
2024-02-17 10:15:15 +01:00
{{content}}
2024-02-17 16:11:16 +01:00
</ol>
2024-02-17 17:06:04 +01:00
</main>
2024-02-17 09:44:08 +01:00
</body>
</html>