libregaming-website/templates/base.html

18 lines
306 B
HTML
Raw Normal View History

2022-02-03 00:00:08 +01:00
<!DOCTYPE html>
<!-- SPDX-License-Identifier: CC0-1.0 -->
2022-02-03 00:00:08 +01:00
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Libregaming.org</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
2022-02-03 00:37:48 +01:00
<main class="container">
{% block content %} {% endblock %}
</main>
2022-02-03 00:00:08 +01:00
</body>
</html>