Koha/koha-tmpl/opac-tmpl/bootstrap/en/includes/authority-identifiers.inc
Jonathan Druart 141223b0fd
Bug 29897: Don't display empty li
It's ugly to move the li to the include file, but it's the easiest for
now...

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-08-09 10:58:49 -03:00

27 lines
954 B
HTML

[% SWITCH identifier.source.lower %]
[% CASE 'orcid' %]
<li>
<span>ORCID: </span>
<a href="https://orcid.org/[% identifier.number | url %]">[% identifier.number | html %]</a>
</li>
[% CASE 'scopus' %]
<li>
<span>ScopusID: </span>
<a href="https://www.scopus.com/authid/detail.uri?authorId=[% identifier.number | url %]">[% identifier.number | html %]</a>
</li>
[% CASE 'loop' %]
<li>
<span>loop: </span>
<a href="https://loop.frontiersin.org/people/[% identifier.number | url %]">[% identifier.number | html %]</a>
</li>
[% CASE 'rid' %]
<li>
<span>Publons: </span>
<a href="https://publons.com/researcher/[% identifier.number | url %]">[% identifier.number | html %]</a>
</li>
[% CASE 'viaf' %]
<li>
<span>VIAF: </span>
<a href="https://viaf.org/viaf/[% identifier.number | url %]">[% identifier.number | html %]</a>
</li>
[% END %]