agahnim.dev/templates/base.html
2026-05-16 22:58:27 +02:00

16 lines
No EOL
248 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{% block title %}Mon Site{% endblock %}</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
{% include "partials/header.html" %}
{% block content %}{% endblock %}
</body>
</html>