Skip to content

Commit

Permalink
Update catalogue.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood authored Jan 12, 2024
1 parent ee2ff64 commit 1aa5688
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/search/catalogue.html
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ <h2 class="tna-heading-xl tna-!--hide-on-large tna-!--hide-on-medium tna-!--marg
'title': result.title,
'headingLevel': 3,
'headingSize': 's',
'href': url_for('catalogue.info', id=result.id),
'href': url_for('catalogue.details', id=result.id),
'body': '<p>' + result.description + '</p>' if result.description else '',
'meta': [
{
Expand Down Expand Up @@ -426,7 +426,7 @@ <h2 class="tna-heading-xl tna-!--hide-on-large tna-!--hide-on-medium tna-!--marg
{% for result in results.results %}
<article>
<h3 class="tna-heading-m">
<a href="{{ url_for('catalogue.info', id=result.id) }}">{{ result.title }}</a>
<a href="{{ url_for('catalogue.details', id=result.id) }}">{{ result.title }}</a>
</h3>
<dl class="tna-dl tna-dl--plain tna-dl--icon-padding">
{% if result.held_by %}
Expand Down

0 comments on commit 1aa5688

Please sign in to comment.