mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-14 09:05:17 +01:00
18 lines
358 B
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 %} |