forked from OpenStreetBrowser/main
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
532 B
23 lines
532 B
<dl>
|
|
|
|
{% set address = tagsPrefix(tags, 'addr:') %}
|
|
{% if address %}
|
|
<dt>
|
|
<i class="fa fa-map-marker symbol" aria-hidden="true"></i>
|
|
{{ keyTrans('addr') }}:
|
|
</dt><dd>
|
|
{{ attribute(tags, 'addr:street') }} {{ attribute(tags, 'addr:housenumber') }}, {{ attribute(tags, 'addr:postcode') }} {{ attribute(tags, 'addr:city') }}
|
|
</dd>
|
|
{% endif %}
|
|
|
|
{% if tags.phone %}
|
|
<dt>
|
|
<i class="fa fa-phone symbol" aria-hidden="true"></i>
|
|
{{ keyTrans('phone') }}:
|
|
</dt>
|
|
<dd>
|
|
<a href='tel:{{ tags.phone }}'>{{ tags.phone }}</a>
|
|
</dd>
|
|
{% endif %}
|
|
|
|
</dl>
|