Skip to content

Commit

Permalink
web: fix DOAJ article links (remove trailing slash)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnewbold committed Jun 4, 2021
1 parent f1c0014 commit 9779781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/fatcat_web/templates/entity_macros.html
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ <h4 style="margin-top: 1em; margin-bottom: 0px; font-size: 1.1em;">
<a href="https://jstor.org/stable/{{paper.jstor_id }}/" style="color: green;">jstor:{{ paper.jstor_id }}</a> &nbsp;
{% endif %}
{% if paper.doaj_id %}
<a href="https://doaj.org/article/{{paper.doaj_id }}/" style="color: green;">doaj:{{ paper.doaj_id }}</a> &nbsp;
<a href="https://doaj.org/article/{{paper.doaj_id }}" style="color: green;">doaj:{{ paper.doaj_id }}</a> &nbsp;
{% endif %}
{% if paper.dblp_id %}
<a href="https://dblp.org/rec/{{ paper.dblp_id }}.html" style="color: green;">dblp:{{ paper.dblp_id }}</a> &nbsp;
Expand Down

0 comments on commit 9779781

Please sign in to comment.