2016-07-07 19:05:01 +00:00
|
|
|
<!DOCTYPE html>
|
2021-02-03 12:17:30 +00:00
|
|
|
<html lang="en">
|
2016-07-07 19:05:01 +00:00
|
|
|
{% include head.html %}
|
2021-01-20 14:27:52 +00:00
|
|
|
<body>
|
2021-02-03 10:27:35 +00:00
|
|
|
<header class="header">
|
|
|
|
<nav class="head navbar container">
|
2021-01-22 17:49:05 +00:00
|
|
|
<h1 class="title container"><a href="/">{{ site.title }}</a></h1>
|
2021-01-20 14:27:52 +00:00
|
|
|
{% include header.html %}
|
2021-02-03 12:03:48 +00:00
|
|
|
</nav>
|
2021-01-20 14:27:52 +00:00
|
|
|
</header>
|
2021-02-03 12:09:30 +00:00
|
|
|
<main class="container">{{ content }}</main>
|
2021-01-20 14:27:52 +00:00
|
|
|
{% include footer.html %}
|
|
|
|
</body>
|
2016-07-07 19:05:01 +00:00
|
|
|
</html>
|
2021-02-03 12:03:48 +00:00
|
|
|
|
|
|
|
{% comment %} vim: set ts=2 sw=2 et tw=80: {% endcomment %}
|