mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-01-01 01:16:26 +00:00
22 lines
611 B
HTML
22 lines
611 B
HTML
{% capture root_url %}{{ site.root | strip_slash }}{% endcapture %}
|
|
{% include head.html %}
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="mid-col">
|
|
{% unless page.banner == false %}
|
|
{% include banner.html %}
|
|
{% endunless %}
|
|
<div class="mid-col-container">
|
|
<div id="content" class="inner">{{ content | expand_urls: root_url }}</div>
|
|
</div>
|
|
<footer id="footer" class="inner">{% include footer.html %}</footer>
|
|
{% include after_footer.html %}
|
|
</div>
|
|
<div class="left-col">
|
|
<header id="header" class="inner">{% include header.html %}</header>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|