cooked/templates/base.html

20 lines
603 B
HTML
Raw Normal View History

2024-10-22 15:18:23 +02:00
<!DOCTYPE html>
<html lang="en">
<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">
<div class="grid md:grid-cols-4">
{% block navigation %}{% endblock %}
{% include "./nav.html" %}
{% block content %}{% endblock %}
</div>
</body>
</html>