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

21 lines
477 B
HTML
Raw Normal View History

2015-06-07 22:15:03 +02:00
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 %}
2015-08-10 00:48:31 +02:00
<body class="page-{{ id | remove:'-' }} site">
2015-06-07 22:15:03 +02:00
2013-11-23 21:53:52 +01:00
{% include header.html %}
2015-06-07 22:15:03 +02:00
2015-08-10 00:48:31 +02:00
<section role="document" class="site__document">
<div class="site__content">
<div class="container">
{{ content }}
</div>
2013-12-04 20:54:40 +01:00
</div>
2015-08-09 18:15:40 +02:00
</section>
2015-06-07 22:15:03 +02:00
2013-11-23 21:53:52 +01:00
</body>
2015-06-07 22:15:03 +02:00
{% include footer.html %}