Add DOI field button to bibliography (#2729)

This commit is contained in:
Simmo Saan 2024-10-16 17:06:04 +03:00 committed by GitHub
parent 332a6dfcbb
commit 977a47cb18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -192,6 +192,9 @@
{% if entry.abstract %} {% if entry.abstract %}
<a class="abstract btn btn-sm z-depth-0" role="button">Abs</a> <a class="abstract btn btn-sm z-depth-0" role="button">Abs</a>
{% endif %} {% endif %}
{% if entry.doi %}
<a href="https://doi.org/{{ entry.doi }}" class="btn btn-sm z-depth-0" role="button">DOI</a>
{% endif %}
{% if entry.arxiv %} {% if entry.arxiv %}
<a href="http://arxiv.org/abs/{{ entry.arxiv }}" class="btn btn-sm z-depth-0" role="button">arXiv</a> <a href="http://arxiv.org/abs/{{ entry.arxiv }}" class="btn btn-sm z-depth-0" role="button">arXiv</a>
{% endif %} {% endif %}