fix: refs
This commit is contained in:
parent
2da4393de3
commit
4ee9ccccf8
1 changed files with 3 additions and 3 deletions
|
@ -76,11 +76,11 @@ schema: artist
|
||||||
<ul>
|
<ul>
|
||||||
{% for concert in artist.concerts %}
|
{% for concert in artist.concerts %}
|
||||||
{%- capture venue -%}
|
{%- capture venue -%}
|
||||||
{% if concert.venue %}
|
{% if concert.venue_name %}
|
||||||
{% if concert.venue_latitude and concert.venue_longitude %}
|
{% if concert.venue_latitude and concert.venue_longitude %}
|
||||||
<a href="https://www.openstreetmap.org/?mlat={{ concert.venue_latitude }}&mlon={{ concert.venue_longitude }}#map=18/{{ concert.venue_latitude }}/{{ concert.venue_longitude }}">{{ concert.venue | formatVenue }}</a>
|
<a href="https://www.openstreetmap.org/?mlat={{ concert.venue_latitude }}&mlon={{ concert.venue_longitude }}#map=18/{{ concert.venue_latitude }}/{{ concert.venue_longitude }}">{{ concert.venue_name | formatVenue }}</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ concert.venue | formatVenue }}
|
{{ concert.venue_name | formatVenue }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{%- endcapture -%}
|
{%- endcapture -%}
|
||||||
|
|
Reference in a new issue