mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
19 lines
415 B
HTML
19 lines
415 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 row">
|
|
{{ content }}
|
|
</div>
|
|
</section>
|
|
|
|
</body>
|
|
|
|
{% include footer.html %}
|