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.
 
 

39 lines
1008 B

<ul>
{% set address = tagsPrefix(tags, 'addr:') %}
{% if address %}
<li>
<i class="fa fa-map-marker symbol" aria-hidden="true"></i>
<span class='key'>{{ keyTrans('addr') }}</span>
<span class='value'>
{{ attribute(tags, 'addr:street') }}
{{ attribute(tags, 'addr:housenumber') }},
{{ attribute(tags, 'addr:postcode') }}
{{ attribute(tags, 'addr:city') }}
</span>
</li>
{% endif %}
{% if tags.phone %}
<li>
<i class="fa fa-phone symbol" aria-hidden="true"></i>
<span class='key'>{{ keyTrans('phone') }}</span>
<span class='value'>
<a href='tel:{{ tags.phone }}'>{{ tags.phone }}</a>
</span>
</li>
{% endif %}
{% set payment = tagsPrefix(tags, 'payment:') %}
{% if payment %}
<li>
<i class="fa fa-money symbol" aria-hidden="true"></i>
<span class='key'>{{ keyTrans('payment') }}</span>
<span class='value'>
{% for k, tag in payment %}
{% if tags[tag] == 'no' %}<s>{{ k }}</s> {% else %}{{ k }} {% endif %}
{% endfor %}
</span>
</li>
{% endif %}
</ul>