diff --git a/_includes/contact-list.html b/_includes/contact-list.html index d406d8d..f7e2e11 100644 --- a/_includes/contact-list.html +++ b/_includes/contact-list.html @@ -17,7 +17,7 @@ {% endif %}
  • - {% if site.plugins contains 'jekyll-feed' %} + {% if site.plugins contains 'jekyll-feed' or site.gems contains 'jekyll-feed' %} {% include icon-rss.svg %} {{ site.data.theme.t.subscribe | default: 'Subscribe' }} diff --git a/_includes/head.html b/_includes/head.html index 19b63a0..5eb470b 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -3,7 +3,7 @@ - {% if site.gems contains 'jekyll-seo-tag' %} + {% if site.plugins contains 'jekyll-seo-tag' or site.gems contains 'jekyll-seo-tag' %} {% comment %} Add metadata for search engines and social networks if jekyll-seo-tag plugin is enabled {% endcomment %} @@ -26,7 +26,7 @@ {% endif %} - {% if site.gems contains 'jekyll-feed' %} + {% if site.plugins contains 'jekyll-feed' or site.gems contains 'jekyll-feed'%} {% comment %} Add Atom feed link if jekyll-feed plugin is enabled {% endcomment %} diff --git a/_layouts/home.html b/_layouts/home.html index 213f878..fe0b42d 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -13,7 +13,7 @@ layout: default

    {{ 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 %}

    - {% if site.plugins contains 'jekyll-paginate' and page.paginate %} + {% if site.plugins contains 'jekyll-paginate' and page.paginate or site.gems contains 'jekyll-paginate' and page.paginate %} {% comment %} Add paginator.posts loop if jekyll-paginate plugin is enabled and page.paginate == true