From 3a0ccbac3a823adcb4ce77c5c59746c6dd9b161f Mon Sep 17 00:00:00 2001 From: Thomas Wood <thomas.wood09@imperial.ac.uk> Date: Thu, 4 Feb 2016 01:29:20 +0000 Subject: [PATCH] Publication layout: preferred syntax for printed dois is with doi: prefix --- _layouts/publication.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/publication.html b/_layouts/publication.html index ad4462a..359f845 100644 --- a/_layouts/publication.html +++ b/_layouts/publication.html @@ -14,7 +14,7 @@ menu: false <p class="card-text">{{ page.entry.keywords }}</p>{% endif %} {% if page.entry.doi or page.entry.isbn %}<h5 class="card-title">Identifiers</h5> <ul class="site-card-list"> - {% if page.entry.doi %}<li>DOI: <a href="http://dx.doi.org/{{ page.entry.doi }}">{{ page.entry.doi }}</a></li>{% endif %} + {% if page.entry.doi %}<li>DOI: <a href="http://dx.doi.org/{{ page.entry.doi }}">doi:{{ page.entry.doi }}</a></li>{% endif %} {% if page.entry.isbn %}<li>ISBN: {{ page.entry.isbn }}</li>{% endif %} </ul>{% endif %} </div> -- GitLab