ada.wf/templates/base.html

27 lines
549 B
HTML
Raw Normal View History

2024-03-03 22:27:28 +01:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
2024-05-13 21:15:41 +02:00
<title>Ada website</title>
2024-03-03 22:27:28 +01:00
<link rel="stylesheet" href="/ui.css">
2024-05-13 21:15:41 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Ada personal website">
2024-03-03 22:27:28 +01:00
</head>
<body>
<section class="section">
<div class="container">
<header>
<p>
<a href="/">Home</a>
|
<a href="/blog">blog</a>
</p>
</header>
{% block content %} {% endblock %}
</div>
</section>
</body>
</html>