16 lines
No EOL
248 B
HTML
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> |