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.

143 lines
4.0 KiB

7 years ago
7 years ago
7 years ago
7 years ago
  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 tags.phone %}
  52. <li class='hasSymbol'>
  53. <i class="fa fa-phone" aria-hidden="true"></i>
  54. <span class='key'>{{ keyTrans('phone') }}:</span>
  55. <span class='value'>
  56. <a href='tel:{{ tags.phone }}'>{{ tags.phone }}</a>
  57. </span>
  58. </li>
  59. {% endif %}
  60. {% if attribute(tags, 'contact:email') %}
  61. <li class='hasSymbol'>
  62. <i class="fa fa-envelope" aria-hidden="true"></i>
  63. <span class='key'>{{ keyTrans('email') }}:</span>
  64. <span class='value'>
  65. <a href='mailto:{{ attribute(tags, 'contact:email') }}'>
  66. {{ attribute(tags, 'contact:email') }}
  67. </a>
  68. </span>
  69. </li>
  70. {% endif %}
  71. {% if attribute(tags, 'email') %}
  72. <li class='hasSymbol'>
  73. <i class="fa fa-envelope" aria-hidden="true"></i>
  74. <span class='key'>{{ keyTrans('email') }}:</span>
  75. <span class='value'>
  76. <a href='mailto:{{ attribute(tags, 'email') }}'>
  77. {{ attribute(tags, 'email') }}
  78. </a>
  79. </span>
  80. </li>
  81. {% endif %}
  82. {% if tags.opening_hours %}
  83. <li class='hasSymbol'>
  84. <i class="fa fa-clock-o" aria-hidden="true"></i>
  85. <span class='key'>{{ keyTrans('opening_hours') }}:</span>
  86. <span class='value'>
  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. <ul>
  109. {% if attribute(tags, 'wheelchair') %}
  110. <li class='hasSymbol'>
  111. <i class="fa fa-wheelchair-alt {{ tags.wheelchair }}" aria-hidden="true"></i>
  112. <span class='key'>{{ keyTrans('wheelchair') }}:</span>
  113. <span class='value'>
  114. {{ tagTrans('wheelchair', tags.wheelchair) }}
  115. <ul>
  116. {% if attribute(tags, 'toilets:wheelchair') %}
  117. <li class='hasSymbol'>
  118. <span class='{{ attribute(tags, 'toilets:wheelchair') }} symbol'>&#128701;</span>
  119. <span class='key'>{{ keyTrans('toilets:wheelchair') }}:</span>
  120. <span class='value'>{{ tagTrans('toilets:wheelchair', attribute(tags, 'toilets:wheelchair')) }}</span>
  121. </li>
  122. {% endif %}
  123. </ul>
  124. </span>
  125. </li>
  126. {% endif %}
  127. </ul>
  128. </span>
  129. </li>
  130. {% endif %}
  131. </ul>