Skip to content

Commit

Permalink
Hard code the address in the sidebar of exhibition pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Dec 16, 2024
1 parent 19400ef commit c2cb91e
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions app/templates/whats-on/exhibition.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,10 @@
}) }}
<div class="tna-container tna-!--padding-vertical-m">
<div class="tna-column tna-column--full">
{% set sidebar_items = [
{
'text': 'About ' + page_data.title,
'href': '#about'
}
] %}
{% set sidebar_items = [{
'text': 'About ' + page_data.title,
'href': '#about'
}] %}
{% if page_data.exhibition_highlights or page_data.video %}
{% set sidebar_items = sidebar_items + [{
'text': 'In this exhibition',
Expand Down Expand Up @@ -158,7 +156,10 @@ <h2 class="tna-visually-hidden">About {{ page_data.title }}</h2>
{{ page_data.location_space_name }}
</dt>
<dd>
<a href="{{ page_data.location_link_url }}">{{ page_data.location_link_text }}</a>
<!-- <a href="{{ page_data.location_link_url }}">{{ page_data.location_link_text }}</a> -->
The National Archives<br>
Kew, Richmond<br>
TW9 4DU
</dd>
{% endif %}
<dt>
Expand Down

0 comments on commit c2cb91e

Please sign in to comment.