27 lines
557 B
HTML
27 lines
557 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>
|
|
<a href="{{ get_url(path='@/books.md') }}">Books</a>
|
|
<a href="https://git.mjwilson.org">Projects</a>
|
|
</nav>
|
|
</header>
|
|
<section class="section">
|
|
<div class="container">
|
|
{% block content %} {% endblock content %}
|
|
</div>
|
|
</section>
|
|
</body>
|
|
|
|
</html>
|