website-risg/templates/index.html

19 lines
362 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 10:15:15 +01:00
<div class="container">
2024-02-17 11:14:49 +01:00
<button onclick='openAll();'>Open all</button>
<button onclick='closeAll();'>Close all</button>
2024-02-17 10:15:15 +01:00
<h1>{{title}}</h1>
{{content}}
</div>
2024-02-17 11:14:49 +01:00
<script>
</script>
2024-02-17 09:44:08 +01:00
</body>
</html>