libregaming-website/templates/base.html

20 lines
446 B
HTML
Raw Permalink 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>{% block title %}{{ config.title }}{% endblock title %}</title>
2023-07-07 18:56:51 +02:00
<link href="{{ config.base_url | safe }}/style.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>