phd-site/mainsite/templates/base.html

26 lines
558 B
HTML
Raw Normal View History

2024-11-13 12:19:06 +01:00
{% load static %}
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Soutenance de thèse — Théophile Bastian</title>
<link rel="stylesheet" href="{% static "css/style.css" %}">
</head>
<body>
<header>
{% include "navbar.html" %}
</header>
<div id="content">
<main>
{% block content %}
{% endblock content %}
<main>
</div>
</body>
</html>