1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-30 21:52:05 +02:00
blog/_src/_layouts/base.html

18 lines
358 B
HTML

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