ada.wf/templates/base.html

25 lines
414 B
HTML
Raw Normal View History

2024-03-03 22:27:28 +01:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Ada blog</title>
<link rel="stylesheet" href="/ui.css">
</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>