site/templates/base.html

22 lines
422 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Gallant</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock %}
<hr>
<div>
<a href="/">home</a><a href="/projects/">projects</a><a href="/blog/">blog</a>
</div>
</div>
</section>
</body>
</html>