website/_src/_layouts/page.html

18 lines
377 B
HTML
Raw Normal View History

---
layout: base
---
2017-08-24 13:47:28 +02:00
{% include header.html %}
<main role="main" class="content content--page {% if page.path contains '.md' %}content--page--markdown{% endif %}">
2017-08-29 13:51:54 +02:00
{% if page.path contains '.md' %}
<div class="row {% if page.narrow %}row--narrow{% endif%}">
{% endif %}
{{ content }}
{% if page.path contains '.md' %}</div>{% endif %}
</main>