web/_layouts/page.html

29 lines
593 B
HTML
Raw Normal View History

2019-09-30 15:38:41 +03:00
---
layout: default
# The page layout
2020-01-02 16:17:49 +03:00
# v2.0
# https://github.com/cotes2020/jekyll-theme-chirpy
2019-09-30 15:38:41 +03:00
# © 2017-2019 Cotes Chung
# MIT License
---
<div class="row bg-white">
2019-11-25 15:56:50 +03:00
<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 %}
2019-09-30 15:38:41 +03:00
{{ content }}
2019-11-25 15:56:50 +03:00
{% endif %}
2019-09-30 15:38:41 +03:00
2019-11-25 15:56:50 +03:00
</div> <!-- #page -->
2019-09-30 15:38:41 +03:00
2019-11-25 15:56:50 +03:00
</div><!-- .col-12 -->
2019-09-30 15:38:41 +03:00
2019-11-25 15:56:50 +03:00
{% include panel.html %}
2019-09-30 15:38:41 +03:00
2019-11-25 15:56:50 +03:00
</div>