website-risg/templates/law.html

26 lines
631 B
HTML
Raw Normal View History

2024-02-17 16:11:16 +01:00
<html>
<head>
<link rel="stylesheet" href="pico.min.css" />
<link rel="stylesheet" href="style.css" />
2024-02-17 18:03:26 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-02-17 16:11:16 +01:00
<meta charset="UTF-8">
</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:50:44 +01:00
<button class="btn-open open-js">Alles öffnen</button>
<button class="btn-close close-js">Alles schließen</button>
2024-02-17 16:11:16 +01:00
<h1>{{title}}</h1>
{{content}}
2024-02-17 17:06:04 +01:00
</main>
2024-02-17 16:25:04 +01:00
<script src="app.js"></script>
2024-02-17 16:11:16 +01:00
</body>
</html>