Skip to content

Commit

Permalink
Fix oin and urn links (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
anneschuth authored Sep 19, 2024
2 parents 6b33e93 + c9de3ba commit 91e011a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions amt/site/templates/macros/cards.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
{% if key == "uri" or key == "link" or key == "upl"%}
<a class="rvo-link rvo-link--normal" href="{{value}}">{{value}}</a>
{% elif key == "oin" %}
<a class="rvo-link rvo-link--normal" href="{{value}}">https://oinregister.logius.nl/oin-register/{{value}}</a>
<a class="rvo-link rvo-link--normal" href="https://oinregister.logius.nl/oin-register/{{value}}">{{value}}</a>
{% elif key == "email" %}
<a class="rvo-link rvo-link--normal" href="mailto:{{value}}">{{value}}</a>
{% elif key == "urn" %}
<a class="rvo-link rvo-link--normal" href="{{value}}">https://minbzk.github.io/instrument-registry/instruments/urn/{{value}}</a>
<a class="rvo-link rvo-link--normal" href="https://minbzk.github.io/instrument-registry/instruments/urn/{{value}}">{{value}}</a>
{% else %}
{{ value }}
{% endif %}
Expand Down

0 comments on commit 91e011a

Please sign in to comment.