krata/_layouts/page.html

28 lines
482 B
HTML
Raw Normal View History

2019-09-30 14:38:41 +02:00
---
layout: default
# The page layout
# © 2017-2019 Cotes Chung
# MIT License
---
<div class="col-12 col-lg-11 col-xl-8">
<div id="page" class="post pb-5 pl-1 pr-1 pl-sm-2 pr-sm-2 pl-md-4 pr-md-4 pl-xl-3">
{% if page.dynamic_title %}
<h1 class="dynamic-title">{{ page.title }}</h1>
<div class="post-content">
{{ content }}
</div>
{% else %}
{{ content }}
{% endif %}
</div> <!-- #page -->
</div><!-- end .col-12 -->
{% include panel.html %}