From 84a1a2e27929a7b87a78a97cfa6bc95b35183c7c Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Sun, 9 Apr 2017 22:14:05 +0200 Subject: [PATCH] Fix redundant logic block --- journals/templates/journals/_base.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/journals/templates/journals/_base.html b/journals/templates/journals/_base.html index bdb3df359..5ac598c77 100644 --- a/journals/templates/journals/_base.html +++ b/journals/templates/journals/_base.html @@ -47,8 +47,8 @@ <footer class="secondary container-fluid py-2"> <div class="row my-1"> <div class="col-12"> - {% if journal.name %} - {{journal}} is published by the SciPost Foundation under the journal doi: 10.21468/{{journal.name}}{% if journal.issn %} and ISSN {{journal.issn}}{% endif %}. + {% if journal.issn %} + {{journal}} is published by the SciPost Foundation under the journal doi: 10.21468/{{journal.name}} and ISSN {{journal.issn}}. {% endif %} </div> </div> -- GitLab