ada.wf/templates/base.html
Ada 97f1828669
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Section contribution
2024-05-13 21:15:41 +02:00

27 lines
549 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Ada website</title>
<link rel="stylesheet" href="/ui.css">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Ada personal website">
</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>