21 lines
316 B
HTML
21 lines
316 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
{% include head.html %}
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<div class="container">
|
||
|
<h3>
|
||
|
<a href="{{ site.baseurl }}/" title="Home">{{ site.title }}</a>
|
||
|
<small>{{ site.tagline }}</small>
|
||
|
</h3>
|
||
|
|
||
|
<main>
|
||
|
{{ content }}
|
||
|
</main>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|