libregaming-website/templates/base.html

20 lines
410 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"/>
2022-03-12 10:33:06 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2022-04-09 15:50:57 +02:00
<title>LibreGaming</title>
2022-04-09 15:50:57 +02:00
<link href="{{ config.base_url | safe }}/bootstrap.min.css" rel="stylesheet">
2022-02-03 00:00:08 +01:00
</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>