diff --git a/paddling_amenities.yaml b/paddling_amenities.yaml
index fac9198..5581cc4 100644
--- a/paddling_amenities.yaml
+++ b/paddling_amenities.yaml
@@ -43,35 +43,53 @@ feature:
{{ tagTrans(key, value) }}
body: |-
{% if constIndex in ['canoe=put_in', 'leisure=slipway','canoe=portage'] %}
-
- - {{ keyTrans('Description') }}
- - {{ localizedTag(tags, 'description') }}
+
+ {% if attribute(tags, 'surface') %}
+ -
+
+ {{ keyTrans('Surface') }}:
+ {{ attribute(tags, 'surface') ? tagTrans('surface', attribute(tags, 'surface')) : '' }}
+
+ {% endif %}
- - {{ keyTrans('Surface') }}
- - {{ attribute(tags, 'surface') ? tagTrans('surface', attribute(tags, 'surface')) : '' }}
- - {{ keyTrans('Operator') }}
- - {{ attribute(tags, 'operator') ? tagTrans('operator', attribute(tags, 'operator')) : '' }}
+ {% if attribute(tags, 'operator') %}
+ -
+
+ {{ keyTrans('Operator') }}:
+ {{ attribute(tags, 'operator') ? tagTrans('operator', attribute(tags, 'operator')) : '' }}
+
+ {% endif %}
- - {{ keyTrans('Access') }}
- - {{ attribute(tags, 'access') ? tagTrans('access', attribute(tags, 'access')) : '' }}
+ {% if attribute(tags, 'access') %}
+ -
+
+ {{ keyTrans('Access') }}:
+ {{ attribute(tags, 'access') ? tagTrans('access', attribute(tags, 'access')) : '' }}
+
+ {% endif %}
- - {{ keyTrans('Fee') }}
- - {{ attribute(tags, 'fee') ? tagTrans('fee', attribute(tags, 'fee')) : '' }}
+ {% if attribute(tags, 'fee') %}
+ -
+
+ {{ keyTrans('Fee') }}:
+ {{ attribute(tags, 'fee') ? tagTrans('fee', attribute(tags, 'fee')) : '' }}
+
+ {% endif %}
- - {{ keyTrans('Wheelchair') }}
- - {{ attribute(tags, 'wheelchair') ? tagTrans('wheelchair', attribute(tags, 'wheelchair')) : '' }}
+ {% if attribute(tags, 'mapillary') %}
+ -
+
+ {{ trans('Photos') }}:
+
+ Mapillary
+
+
+ {% endif %}
- - {{ trans('Photos') }}
- -
-
- {% if attribute(tags, 'mapillary') %}
- - Mapillary
- {% endif %}
-
-
-
- {% endif %}
+
+ {% endif %}
+
markerSign: '{{ item[''sign''] | raw }}'
markerSymbol: |
{% if item['sign'] %}{{ markerPointer({ fillColor: '#FFFFFF' }) }}{% endif %}
diff --git a/paddling_hazards.yaml b/paddling_hazards.yaml
index 4c80808..5572f9e 100644
--- a/paddling_hazards.yaml
+++ b/paddling_hazards.yaml
@@ -35,25 +35,43 @@ feature:
{{ tagTrans(key, value) }}
{% endif %}
body: |-
-
- - {{ keyTrans('Description') }}
- - {{ localizedTag(tags, 'description') }}
-
+
+
{% if attribute(tags, 'operator') %}
- - {{ keyTrans('Operator') }}
- - {{ attribute(tags, 'operator') ? tagTrans('operator', attribute(tags, 'operator')) : '' }}
+ -
+
+ {{ keyTrans('Operator') }}:
+ {{ attribute(tags, 'operator') ? tagTrans('operator', attribute(tags, 'operator')) : '' }}
+
+ {% endif %}
+
+ {% if attribute(tags, 'height') %}
+ -
+
+ {{ keyTrans('Height') }}:
+ {{ attribute(tags, 'height') ? tagTrans('height', attribute(tags, 'height')) : '' }}
+
{% endif %}
- - {{ trans('Photos') }}
- -
-
- {% if attribute(tags, 'mapillary') %}
- - Mapillary
- {% endif %}
-
-
+ {% if attribute(tags, 'width') %}
+ -
+
+ {{ keyTrans('Width') }}:
+ {{ attribute(tags, 'width') ? tagTrans('width', attribute(tags, 'width')) : '' }}
+
+ {% endif %}
+
+ {% if attribute(tags, 'mapillary') %}
+ -
+
+ {{ trans('Photos') }}:
+
+ Mapillary
+
+
+ {% endif %}
-
+
markerSign:
markerSymbol: |
{{ markerPointer({ fillColor: '#ff6700' }) }}