mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-07 22:31:52 +02:00
18 lines
No EOL
416 B
HTML
18 lines
No EOL
416 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>{% block title %}{% endblock %} - La Chariotte</title>
|
|
{% block css %}
|
|
<link rel="stylesheet" href="{% static 'css/app.css' %}">
|
|
{% block extra_css %}{% endblock extra_css %}
|
|
{% endblock css %}
|
|
</head>
|
|
<body>
|
|
<main>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html> |