Display 'Posts' header only if the site has posts (#144)

This commit is contained in:
Jimit Dholakia 2021-07-06 05:57:57 +05:30 committed by GitHub
parent e47c5ac128
commit 9bf8bee149
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 17 deletions

View File

@ -8,6 +8,7 @@ layout: default
<div class="index inner">
<div>{{ content }}</div>
{% if site.posts.size > 0 %}
<div>
<header class="section-title">
<h2>{{ site.data.theme.t.posts | default: 'Posts' }}{% if paginator.page > 1 %}{{ site.data.theme.t.page | default: 'Page' | prepend: ' - ' | append: ' ' }}{{ paginator.page }} {{ site.data.theme.t.of | default: 'of' }} {{ paginator.total_pages }}{% endif %}</h2>
@ -24,5 +25,7 @@ layout: default
{% endif %}
</div>
</div>
{% endif %}
</div>
</main>