Main categories of OpenStreetBrowser
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

  1. <dl>
  2. {% set address = tagsPrefix(tags, 'addr:') %}
  3. {% if address %}
  4. <dt>
  5. <i class="fa fa-map-marker symbol" aria-hidden="true"></i>
  6. {{ keyTrans('addr') }}:
  7. </dt><dd>
  8. {{ attribute(tags, 'addr:street') }} {{ attribute(tags, 'addr:housenumber') }}, {{ attribute(tags, 'addr:postcode') }} {{ attribute(tags, 'addr:city') }}
  9. </dd>
  10. {% endif %}
  11. {% if tags.phone %}
  12. <dt>
  13. <i class="fa fa-phone symbol" aria-hidden="true"></i>
  14. {{ keyTrans('phone') }}:
  15. </dt>
  16. <dd>
  17. <a href='tel:{{ tags.phone }}'>{{ tags.phone }}</a>
  18. </dd>
  19. {% endif %}
  20. </dl>