maggioni.xyz/_layouts/main.html

17 lines
431 B
HTML
Raw Normal View History

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>
<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 %}
</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>
{% comment %} vim: set ts=2 sw=2 et tw=80: {% endcomment %}