tale/_layouts/default.html

30 lines
730 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
2017-03-22 07:47:40 +00:00
<nav class="nav">
<div class="nav-container">
<a href="{{ site.baseurl }}/">
<h2 class="nav-title">{{ site.title }}</h2>
2017-03-11 05:09:18 +00:00
</a>
2017-03-22 07:47:40 +00:00
<ul>
2017-10-07 18:50:44 +00:00
<li><a href="{{ '/about' | prepend: site.baseurl }}">About</a></li>
<li><a href="{{ site.baseurl }}/">Posts</a></li>
2017-03-22 07:47:40 +00:00
</ul>
</div>
2017-03-22 07:47:40 +00:00
</nav>
<main>
{{ content }}
</main>
2017-03-22 07:47:40 +00:00
<footer>
<span>
2017-04-15 06:43:13 +00:00
&copy; <time datetime="{{ site.time }}">{{ site.time | date: '%Y' }}</time> {{ site.author.name }}. Made with Jekyll using the <a href="https://github.com/chesterhow/tale/">Tale</a> theme.
2017-03-22 07:47:40 +00:00
</span>
</footer>
</body>
</html>