18 lines
417 B
HTML
18 lines
417 B
HTML
<!-- vim: set ts=2 sw=2 et tw=80: -->
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
{% include head.html %}
|
|
<body>
|
|
<header class="header container">
|
|
<nav class="head navbar">
|
|
<h1 class="title container"><a href="/">{{ site.title }}</a></h1>
|
|
{% include header.html %}
|
|
</section>
|
|
</header>
|
|
<main class="container">
|
|
{{ content }}
|
|
</main>
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|