mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-11 23:55:16 +01:00
21 lines
477 B
HTML
21 lines
477 B
HTML
|
|
{% include head.html %}
|
|
|
|
{% capture id %}{{ page.url | replace:'/','-' | replace_first:'-','' | replace:'.html','' | replace:'-index','' }}{% endcapture %}
|
|
|
|
<body class="page-{{ id | remove:'-' }} site">
|
|
|
|
{% include header.html %}
|
|
|
|
<section role="document" class="site__document">
|
|
<div class="site__content">
|
|
<div class="container">
|
|
{{ content }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</body>
|
|
|
|
{% include footer.html %}
|