From db55facbb7155453533a3fbf9a22497fcba6b06d Mon Sep 17 00:00:00 2001 From: Benoit Galati Date: Tue, 6 Sep 2016 07:43:52 -0400 Subject: [PATCH] Fix Liquid Warning. Ref : mmistakes/minimal-mistakes#479 --- _layouts/post.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_layouts/post.html b/_layouts/post.html index a75b631..296b19d 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -37,13 +37,13 @@

{% if page.headline %}{{ page.headline }}{% else %}{{ pa By {{ author.name }} {% if page.modified %}{% endif %} - {% if (site.owner.disqus-shortname and page.comments) or site.comments %} Comment{% endif %} + {% if site.owner.disqus-shortname and page.comments or site.comments %} Comment{% endif %} {% if page.share %}{% include social-share.html %}{% endif %} {% if page.ads == true %}{% include ad-sidebar.html %}{% endif %}
{{ content }} - {% if (site.owner.disqus-shortname and page.comments) or site.comments %} + {% if site.owner.disqus-shortname and page.comments or site.comments %}
{% include disqus-comments.html %} {% endif %}