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.
|
|
<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 %}
{% set payment = tagsPrefix(tags, 'payment:') %}{% if payment %}<dt><i class="fa fa-money symbol" aria-hidden="true"></i>{{ keyTrans('payment') }}:</dt><dd>{% for k, tag in payment %}{% if tags[tag] == 'no' %}<s>{{ k }}</s> {% else %}{{ k }} {% endif %}{% endfor %}</dd>{% endif %}
</dl>
|