2012-06-03 11:40:57 +00:00
|
|
|
{% capture root_url %}{{ site.root | strip_slash }}{% endcapture %}
|
|
|
|
{% include head.html %}
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<header id="header" class="inner">{% include header.html %}</header>
|
2013-02-10 14:50:28 +00:00
|
|
|
{% unless page.banner == false %}
|
|
|
|
{% include banner.html %}
|
|
|
|
{% endunless %}
|
2012-06-03 11:40:57 +00:00
|
|
|
<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>
|