syndicate-2017/_layouts/skeleton.html

19 lines
373 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_header %}
2018-12-22 17:49:09 +00:00
<div class="main-content-container">
<main class="content">
{{ content }}
</main>
2016-03-09 11:23:06 +00:00
</div>
2016-03-30 22:32:07 +00:00
{% include common_footer %}
2016-03-09 11:23:06 +00:00
</div>
</body>
</html>