web/_layouts/page.html

39 lines
897 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
---
2020-01-03 16:22:11 +03:00
<div class="row">
2019-11-25 15:56:50 +03:00
<div class="col-12 col-lg-11 col-xl-8">
2020-02-27 10:47:57 +03:00
<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 mb-md-4">
2019-11-25 15:56:50 +03:00
{% 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 %}
</div> <!-- #page -->
</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>
2020-02-27 10:47:57 +03:00
<div class="row">
<div class="col-12 col-lg-11 col-xl-8">
<div class="pl-1 pr-1 pl-sm-2 pr-sm-2 pl-md-4 pr-md-4">
{% if site.disqus.comments and page.comments %}
{% include disqus.html %}
{% endif %}
</div> <!-- .pl-1 pr-1 -->
</div> <!-- .col-12 -->
</div> <!-- .row -->