Files
mjwilson.org/templates/base.html
2025-06-24 10:42:32 -04:00

25 lines
454 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MyBlog</title>
</head>
<body>
<header>
<nav>
<a href="{{ get_url(path='/') }}">Home</a>
<a href="{{ get_url(path='@/about.md') }}">About</a>
<a href="{{ get_url(path='@/blog/_index.md') }}">Posts</a>
</nav>
</header>
<section class="section">
<div class="container">
{% block content %} {% endblock content %}
</div>
</section>
</body>
</html>