summaryrefslogtreecommitdiffstats
path: root/source/_layouts/default.html
blob: a3fc49dbf695db994bec3295bf7fd20f64972785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% capture root_url %}{{ site.root | strip_slash }}{% endcapture %}
{% include head.html %}

<body>
	<header id="header" class="inner">{% include header.html %}</header>
	{% unless page.banner == false %}
		{% include banner.html %}
	{% endunless %}
	<div id="content" class="inner">{{ content | expand_urls: root_url }}</div>
	<footer id="footer" class="inner">{% include footer.html %}</footer>
	{% include after_footer.html %}
</body>
</html>