1
0
mirror of https://github.com/kremalicious/blog.git synced 2025-01-09 13:18:54 +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 %}