libregaming-website/templates/base.html

20 lines
446 B
HTML

<!DOCTYPE html>
<!-- SPDX-License-Identifier: CC0-1.0 -->
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{{ config.title }}{% endblock title %}</title>
<link href="{{ config.base_url | safe }}/style.css" rel="stylesheet">
</head>
<body>
<main class="container">
{% block content %} {% endblock %}
</main>
</body>
</html>