26 lines
558 B
HTML
26 lines
558 B
HTML
|
{% 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>
|
||
|
|