{% set hasDescription = tagsPrefix(tags, 'description:') %} {% if tags.description or hasDescription %}
  • {{ localizedTag(tags, 'description')|default(attribute(tags, 'description:' ~ hasDescription|keys[0])) }}
  • {% endif %} {% set address = tagsPrefix(tags, 'addr:') %} {% if address %}
  • {{ keyTrans('address') }}: {{ attribute(tags, 'addr:street') }} {{ attribute(tags, 'addr:housenumber') }}, {{ attribute(tags, 'addr:postcode') }} {{ attribute(tags, 'addr:city') }}
  • {% endif %} {% if tags.website %}
  • {{ keyTrans('website') }}: {{ tags.website }}
  • {% endif %} {% if attribute(tags, 'contact:website') %}
  • {{ keyTrans('website') }}: {{ attribute(tags, 'contact:website') }}
  • {% endif %} {% if tags.phone %}
  • {{ keyTrans('phone') }}: {{ tags.phone }}
  • {% endif %} {% if attribute(tags, 'contact:phone') %}
  • {{ keyTrans('phone') }}: {{ attribute(tags, 'contact:phone') }}
  • {% endif %} {% if attribute(tags, 'contact:email') or tags.email %}
  • {{ keyTrans('contact') }}: {% if attribute(tags, 'contact:email') %} {% endif %} {% if attribute(tags, 'email') %} {% endif %}
  • {% endif %} {% if tags.opening_hours %}
  • {{ keyTrans('opening_hours') }}: {{ tags.opening_hours }}
  • {% endif %} {% set payment = tagsPrefix(tags, 'payment:') %} {% if payment %}
  • {{ keyTrans('payment') }}: {% set i = 0 %} {% for k, tag in payment %} {%- if i > 0 %},{% endif %} {% if tags[tag] == 'no' %}{{ keyTrans(tag, { default: k }) }}{% else %}{{ keyTrans(tag, { default: k }) }}{% endif -%} {% set i = i + 1 -%} {% endfor %}
  • {% endif %} {% if attribute(tags, 'wheelchair') %}
  • {{ trans('facilities') }}: {% if attribute(tags, 'wheelchair') %} {% if attribute(tags, 'toilets:wheelchair') %} (🚽) {% endif %} {% endif %}
  • {% endif %} {% set wikipedia = null %} {% if attribute(tags, 'wikipedia') %} {% set wikipedia = tags.wikipedia|matches("^([^:]+):(.*)$") %} {% endif %} {% if not wikipedia %} {% for k, v in tags %} {% set m = k|matches("^wikipedia:(.*)$") %} {% if m %} {% set wikipedia = [ 0, m[1], v ] %} {% endif %} {% endfor %} {% endif %} {% if wikipedia %}
  • {{ keyTrans('wikipedia') }}: {{ wikipedia[2] }} {% endif %} {% if tags.start_date %}
  • {{ keyTrans('start_date') }}: {{ tags.start_date|osmFormatDate }}
  • {% endif %} {% if tags.opening_date %}
  • {{ keyTrans('opening_date') }}: {{ tags.opening_date|osmFormatDate }}
  • {% endif %}