You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
445 B
13 lines
445 B
{% 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>
|