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.

132 lines
3.9 KiB

  1. <ul>
  2. {% set address = tagsPrefix(tags, 'addr:') %}
  3. {% if address %}
  4. <li class='hasSymbol'>
  5. <i class="fa fa-map-marker" aria-hidden="true"></i>
  6. <span class='key'>{{ keyTrans('addr') }}:</span>
  7. <span class='value'>
  8. {{ attribute(tags, 'addr:street') }}
  9. {{ attribute(tags, 'addr:housenumber') }},
  10. {{ attribute(tags, 'addr:postcode') }}
  11. {{ attribute(tags, 'addr:city') }}
  12. </span>
  13. </li>
  14. {% endif %}
  15. {% if tags.website %}
  16. <li class='hasSymbol'>
  17. <i class="fa fa-globe" aria-hidden="true"></i>
  18. <span class='key'>{{ keyTrans('website') }}:</span>
  19. <span class='value'>
  20. <a href='{{ tags.website }}'>{{ tags.website }}</a>
  21. </span>
  22. </li>
  23. {% endif %}
  24. {% if attribute(tags, 'contact:website') %}
  25. <li class='hasSymbol'>
  26. <i class="fa fa-globe" aria-hidden="true"></i>
  27. <span class='key'>{{ keyTrans('website') }}:</span>
  28. <span class='value'>
  29. <a href='{{ attribute(tags, 'contact:website') }}'>{{ attribute(tags, 'contact:website') }}</a>
  30. </span>
  31. </li>
  32. {% endif %}
  33. {% if tags.phone %}
  34. <li class='hasSymbol'>
  35. <i class="fa fa-phone" aria-hidden="true"></i>
  36. <span class='key'>{{ keyTrans('phone') }}:</span>
  37. <span class='value'>
  38. <a href='tel:{{ tags.phone }}'>{{ tags.phone }}</a>
  39. </span>
  40. </li>
  41. {% endif %}
  42. {% if attribute(tags, 'contact:phone') %}
  43. <li class='hasSymbol'>
  44. <i class="fa fa-phone" aria-hidden="true"></i>
  45. <span class='key'>{{ keyTrans('phone') }}:</span>
  46. <span class='value'>
  47. <a href='tel:{{ attribute(tags, 'contact:phone') }}'>{{ attribute(tags, 'contact:phone') }}</a>
  48. </span>
  49. </li>
  50. {% endif %}
  51. {% if attribute(tags, 'contact:email') or tags.email %}
  52. <li class='hasSymbol'>
  53. <i class="fa fa-user-circle" aria-hidden="true"></i>
  54. <span class='key'>{{ keyTrans('contact') }}:</span>
  55. <span class='value'>
  56. {% if attribute(tags, 'contact:email') %}
  57. <a href='mailto:{{ attribute(tags, 'contact:email') }}'>
  58. <i class="fa fa-envelope" aria-hidden="true"></i>
  59. </a>
  60. {% endif %}
  61. {% if attribute(tags, 'email') %}
  62. <a href='mailto:{{ attribute(tags, 'email') }}'>
  63. <i class="fa fa-envelope" aria-hidden="true"></i>
  64. </a>
  65. {% endif %}
  66. </span>
  67. </li>
  68. {% endif %}
  69. {% if attribute(tags, 'contact:website') %}
  70. <li class='hasSymbol'>
  71. <i class="fa fa-globe" aria-hidden="true"></i>
  72. <span class='key'>{{ keyTrans('website') }}:</span>
  73. <span class='value'>
  74. <a href='{{ attribute(tags, 'contact:website') }}'>{{ attribute(tags, 'contact:website') }}</a>
  75. </span>
  76. </li>
  77. {% endif %}
  78. {% if tags.opening_hours %}
  79. {% set oh_state = openingHoursState(tags.opening_hours) %}
  80. {% set oh_css = { "open": "yes", "closed": "no", "unknown": "unknown" } %}
  81. {% set oh_css = oh_css[oh_state] %}
  82. <li class='hasSymbol'>
  83. <i class="fa fa-clock-o {{ oh_css }}" aria-hidden="true"></i>
  84. <span class='key'>{{ keyTrans('opening_hours') }}:</span>
  85. <span class='value'>
  86. {{ trans(oh_state) }}<br />
  87. {{ tags.opening_hours }}
  88. </span>
  89. </li>
  90. {% endif %}
  91. {% set payment = tagsPrefix(tags, 'payment:') %}
  92. {% if payment %}
  93. <li class='hasSymbol'>
  94. <i class="fa fa-money" aria-hidden="true"></i>
  95. <span class='key'>{{ keyTrans('payment') }}:</span>
  96. <span class='value'>
  97. {% for k, tag in payment %}
  98. {% if tags[tag] == 'no' %}<s>{{ k }}</s> {% else %}{{ k }} {% endif %}
  99. {% endfor %}
  100. </span>
  101. </li>
  102. {% endif %}
  103. {% if attribute(tags, 'wheelchair') %}
  104. <li class='hasSymbol'>
  105. <i class="fa fa-info-circle" aria-hidden="true"></i>
  106. <span class='key'>{{ trans('facilities') }}:</span>
  107. <span class='value'>
  108. {% if attribute(tags, 'wheelchair') %}
  109. <i class="fa fa-wheelchair-alt {{ tags.wheelchair }}" aria-hidden="true" title='{{ keyTrans('wheelchair') }}: {{ tagTrans('wheelchair', tags.wheelchair) }}'></i>
  110. {% if attribute(tags, 'toilets:wheelchair') %}
  111. (<span class='{{ attribute(tags, 'toilets:wheelchair') }}' title='{{ keyTrans('toilets:wheelchair') }}: {{ tagTrans('toilets:wheelchair', attribute(tags, 'toilets:wheelchair')) }}'>&#128701;</span>)
  112. {% endif %}
  113. {% endif %}
  114. </span>
  115. </li>
  116. {% endif %}
  117. </ul>