1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-23 10:27:20 +01:00
blog/_src/_layouts/base.html

19 lines
411 B
HTML

{% include head.html %}
{% capture id %}{{ page.url | replace:'/','-' | replace_first:'-','' | replace:'.html','' | replace:'-index','' }}{% endcapture %}
<body class="page-{{ id | remove:'-' }}">
{% include header.html %}
<section role="document" class="document container">
<div class="content">
{{ content }}
</div>
</section>
</body>
{% include footer.html %}