synapse-templates/_base.html

23 lines
537 B
HTML
Raw Normal View History

2023-07-30 21:47:21 +02:00
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{% endblock %}</title>
<style type="text/css">
{%- include 'style.css' without context %}
</style>
{% block header %}{% endblock %}
</head>
<body>
<header class="mx_Header">
2023-07-30 22:31:36 +02:00
<h1>Cozy Chat</h1>
2023-07-30 21:47:21 +02:00
</header>
2023-07-30 22:34:58 +02:00
<main class="mx_Main">
{% block body %}{% endblock %}
</main>
2023-07-30 21:47:21 +02:00
</body>
</html>