2015-03-02 21:06:05 +01:00
|
|
|
---
|
2016-03-28 05:13:45 +02:00
|
|
|
layout: base
|
2015-03-02 21:06:05 +01:00
|
|
|
---
|
|
|
|
|
2016-03-18 12:33:17 +01:00
|
|
|
{% include header.html type="page" %}
|
|
|
|
|
2020-08-23 21:23:14 +02:00
|
|
|
<div class="{% if page.full-width %} container-fluid {% else %} container-md {% endif %}" role="main">
|
2015-03-02 21:06:05 +01:00
|
|
|
<div class="row">
|
2020-08-23 21:23:14 +02:00
|
|
|
<div class="{% if page.full-width %} col {% else %} col-xl-8 offset-xl-2 col-lg-10 offset-lg-1 {% endif %}">
|
2020-08-25 00:04:22 +02:00
|
|
|
{% if page.before-content %}
|
|
|
|
<div class="before-content">
|
|
|
|
{% for file in page.before-content %}
|
|
|
|
{% include {{ file }} %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2016-03-18 12:33:17 +01:00
|
|
|
{{ content }}
|
2020-08-25 00:04:22 +02:00
|
|
|
|
|
|
|
{% if page.after-content %}
|
|
|
|
<div class="after-content">
|
|
|
|
{% for file in page.after-content %}
|
|
|
|
{% include {{ file }} %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
2020-04-26 08:57:50 +02:00
|
|
|
{% include comments.html %}
|
2015-03-14 02:35:19 +01:00
|
|
|
</div>
|
2015-03-02 21:06:05 +01:00
|
|
|
</div>
|
2016-03-28 05:13:45 +02:00
|
|
|
</div>
|