syndicate-2017/_layouts/skeleton.html

18 lines
343 B
HTML
Raw Normal View History

2016-03-09 11:23:06 +00:00
<!DOCTYPE html>
<html>
<head>
2016-03-30 22:32:07 +00:00
{% include common_html_headers %}
2016-03-09 11:23:06 +00:00
<title>{{ site.title }}: {{ page.title }}</title>
</head>
<body>
2016-04-01 18:33:58 +00:00
<div id="page" class="{{ page.class }}">
2016-03-30 22:32:07 +00:00
{% include common_nav %}
{% include common_header %}
2016-04-01 18:33:58 +00:00
<div class="content">
2016-03-09 11:23:06 +00:00
{{ content }}
</div>
2016-03-30 22:32:07 +00:00
{% include common_footer %}
2016-03-09 11:23:06 +00:00
</div>
</body>
</html>