cooked/templates/base.jinja

20 lines
639 B
Plaintext
Raw Normal View History

2024-10-22 15:18:23 +02:00
<!DOCTYPE html>
2024-10-30 13:15:01 +01:00
<html lang="en" data-theme="corporate">
2024-10-22 15:18:23 +02:00
<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">
<link rel="stylesheet" href="/styles.css">
<title>Cooked</title>
{% block head %}{% endblock %}
</head>
<body class="text-gray-500 font-body">
2024-10-25 17:13:01 +02:00
<div class="flex flex-col md:flex-row gap-4">
2024-10-22 15:18:23 +02:00
{% block navigation %}{% endblock %}
2024-10-30 13:15:01 +01:00
{% include "./nav.jinja" %}
2024-10-22 15:18:23 +02:00
{% block content %}{% endblock %}
</div>
</body>
</html>