2015-03-03 02:10:41 +01:00
|
|
|
---
|
|
|
|
common-css:
|
2020-08-21 20:55:52 +02:00
|
|
|
- "/assets/css/beautifuljekyll-minimal.css"
|
2020-05-02 08:10:20 +02:00
|
|
|
common-ext-css:
|
|
|
|
- href: "https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
|
|
|
|
sri: "sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
|
|
|
|
common-ext-js:
|
2020-08-24 02:17:44 +02:00
|
|
|
- href: "https://code.jquery.com/jquery-3.5.1.slim.min.js"
|
|
|
|
sri: "sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs="
|
2020-05-02 08:10:20 +02:00
|
|
|
- href: "https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
|
|
|
|
sri: "sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
|
|
|
|
- href: "https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
|
|
|
|
sri: "sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
|
2015-03-03 02:10:41 +01:00
|
|
|
---
|
|
|
|
|
2015-03-02 21:06:05 +01:00
|
|
|
<!DOCTYPE html>
|
2020-04-22 23:58:01 +02:00
|
|
|
<html lang="{{ page.language | default: site.language | default: 'en' }}">
|
2015-03-02 21:06:05 +01:00
|
|
|
|
2015-03-03 02:10:41 +01:00
|
|
|
{% include head.html %}
|
2015-03-02 21:06:05 +01:00
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2020-08-23 21:23:14 +02:00
|
|
|
<div role="main" class="{% if page.full-width %} container-fluid {% else %} container-md {% endif %} main-content">
|
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 %}
|
|
|
|
|
2015-03-02 21:06:05 +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 %}
|
2015-03-02 21:06:05 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{% include footer-minimal.html %}
|
2017-10-03 22:21:54 +02:00
|
|
|
|
2015-03-03 02:10:41 +01:00
|
|
|
{% include footer-scripts.html %}
|
2017-10-03 22:21:54 +02:00
|
|
|
|
2015-03-02 21:06:05 +01:00
|
|
|
</body>
|
|
|
|
</html>
|