Files
greyshade/source/_layouts/default.html
Shashank Mehta 50e99518d8 Making the author info left col less intrusive.
Author info opacity tweak removed from mobile display.
2012-12-02 17:24:56 +05:30

24 lines
651 B
HTML

{% capture root_url %}{{ site.root | strip_slash }}{% endcapture %}
{% include head.html %}
<body>
<div class="container">
<div class="left-col">
<div class="intrude-less">
<header id="header" class="inner">{% include header.html %}</header>
</div>
</div>
<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>
</body>
</html>