From f8d36fe02cea3b444fe700c9d6d002cc7b90e516 Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Sun, 9 Apr 2017 21:58:29 +0200 Subject: [PATCH] Do not auto-show Journals footer --- journals/templates/journals/_base.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/journals/templates/journals/_base.html b/journals/templates/journals/_base.html index 891fed889..bdb3df359 100644 --- a/journals/templates/journals/_base.html +++ b/journals/templates/journals/_base.html @@ -47,7 +47,9 @@ <footer class="secondary container-fluid py-2"> <div class="row my-1"> <div class="col-12"> - {{journal}} is published by the SciPost Foundation under the journal doi: 10.21468/{{journal.name}} and ISSN {{journal.issn}}. + {% 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 %}. + {% endif %} </div> </div> </footer> -- GitLab