1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 10:08:50 +02:00
blog/_src/_layouts/base.html

18 lines
358 B
HTML
Raw Normal View History

2013-11-23 21:53:52 +01:00
{% include head.html %}
2013-11-28 22:45:29 +01:00
{% capture id %}{{ page.url | replace:'/','-' | replace_first:'-','' | replace:'.html','' | replace:'-index','' }}{% endcapture %}
<body class="page-{{ id }}">
2013-11-23 21:53:52 +01:00
{% include header.html %}
2013-11-23 21:53:52 +01:00
<section role="document" class="container">
{{ content }}
2013-11-18 01:08:13 +01:00
2013-11-23 21:53:52 +01:00
</section>
</body>
{% include footer.html %}