ada.wf/templates/base.html
Ada 7e8e32ac61
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Migrate to zola & docker
2024-03-03 22:48:50 +01:00

25 lines
414 B
HTML

<!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>