23 lines
427 B
HTML
23 lines
427 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-us">
|
|
|
|
{% include head.html %}
|
|
|
|
<body class="theme-base-09">
|
|
|
|
{% include sidebar.html %}
|
|
<h3 class="masthead-title">
|
|
<a href="/" title="Home">{{ site.title }}</a>
|
|
|
|
{% for page in site.pages_list %}
|
|
|
|
<small><a href="{{ page[1] }}">{{ page[0] }}</a></small>
|
|
{% endfor %}
|
|
</h3>
|
|
|
|
<div class="content container">
|
|
{{ content }}
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|