_layouts/page.html in jekyll-theme-chirpy-5.3.0 vs _layouts/page.html in jekyll-theme-chirpy-5.3.1
- old
+ new
@@ -1,30 +1,28 @@
---
layout: default
---
-{% include lang.html %}
-
{% include assets-origin.html %}
<div class="row">
<!-- core -->
- <div id="core-wrapper" class="col-12 col-lg-11 col-xl-9 pr-xl-4 pb-5">
+ <div id="core-wrapper" class="col-12 col-lg-11 col-xl-9 pr-xl-4">
<div class="post pl-1 pr-1 pl-md-2 pr-md-2">
{% capture _content %}
{% if layout.refactor or page.layout == 'page' %}
{% include refactor-content.html content=content %}
{% else %}
{{ content }}
{% endif %}
{% endcapture %}
- {% if page.collection == 'tabs' %}
+ {% 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 %}
+ {% assign title = site.data.locales[site.lang].tabs[tab_key] | default: page.title %}
<h1 class="dynamic-title">
{{ title }}
</h1>
<div class="post-content">
{{ _content }}
@@ -53,10 +51,10 @@
</div>
<!-- tail -->
{% if layout.tail_includes %}
<div class="row">
- <div id="tail-wrapper" class="col-12 col-lg-11 col-xl-9 pl-3 pr-3 pr-xl-4">
+ <div id="tail-wrapper" class="col-12 col-lg-11 col-xl-9 pl-3 pr-3 pr-xl-4 mt-5">
{% for _include in layout.tail_includes %}
{% assign _include_path = _include | append: '.html' %}
{% include {{ _include_path }} %}
{% endfor %}
</div>