krata/_layouts/page.html

69 lines
1.9 KiB
HTML
Raw Normal View History

2019-09-30 14:38:41 +02:00
---
layout: default
---
{% include lang.html %}
{% include origin-type.html %}
2021-12-01 14:48:57 +01:00
{% if layout.tail_includes %}
{% assign has_tail = true %}
{% endif %}
<div class="row{% unless has_tail %} mb-5{% endunless %}">
2021-12-01 14:48:57 +01:00
<!-- core -->
<div id="core-wrapper" class="col-12 col-lg-11 col-xl-9 pe-xl-4">
{% capture padding %}
{% unless page.layout == 'home' %}px-1{% endunless %}
{% endcapture %}
<div class="post {{ padding | strip }} px-md-2">
{% capture _content %}
2021-12-13 14:55:19 +01:00
{% if layout.refactor or page.layout == 'page' %}
{% include refactor-content.html content=content lang=lang %}
2021-12-13 14:55:19 +01:00
{% else %}
{{ content }}
{% endif %}
{% endcapture %}
{% if page.layout == 'page' or page.collection == 'tabs' %}
{% assign tab_key = page.title | downcase %}
{% assign title = site.data.locales[lang].tabs[tab_key] | default: page.title %}
<h1 class="dynamic-title">
{{ title }}
</h1>
<div class="post-content">
{{ _content }}
</div>
{% else %}
2021-12-13 14:55:19 +01:00
{{ _content }}
{% endif %}
2021-12-01 14:48:57 +01:00
</div>
</div>
<!-- #core-wrapper -->
2019-09-30 14:38:41 +02:00
<!-- panel -->
<div id="panel-wrapper" class="col-xl-3 ps-2 text-muted">
2021-12-01 14:48:57 +01:00
<div class="access">
{% include update-list.html lang=lang %}
{% include trending-tags.html lang=lang %}
2021-12-01 14:48:57 +01:00
</div>
{% for _include in layout.panel_includes %}
2021-12-01 14:48:57 +01:00
{% assign _include_path = _include | append: '.html' %}
{% include {{ _include_path }} lang=lang %}
2021-12-01 14:48:57 +01:00
{% endfor %}
</div>
2019-11-25 13:56:50 +01:00
</div>
2020-02-27 08:47:57 +01:00
2021-12-01 14:48:57 +01:00
<!-- tail -->
{% if has_tail %}
<div class="row">
<div id="tail-wrapper" class="col-12 col-lg-11 col-xl-9 px-3 pe-xl-4 mt-5">
{% for _include in layout.tail_includes %}
{% assign _include_path = _include | append: '.html' %}
{% include {{ _include_path }} lang=lang %}
{% endfor %}
</div>
2021-12-01 14:48:57 +01:00
</div>
2020-03-06 18:25:08 +01:00
{% endif %}