<button type="button" class="button-toggle loud" data-toggle="button" aria-pressed="false" autocomplete="off" onclick="this.blur();">
<p class="option-name">option 1</p>
<h2 class="price">CHF 268.-</h2>
Transport via Planzer
</button>
<button type="button" class="{{ className }}" data-toggle="button" aria-pressed="false" autocomplete="off" onclick="this.blur();">
{% if optionName %}
<p class="option-name">{{ optionName }}</p>
{% endif %}
{% if price %}
<h2 class="price">{{ price }}</h2>
{% endif %}
{{ buttonText }}
</button>
{
"buttonText": "Transport via Planzer",
"className": "button-toggle loud",
"optionName": "option 1",
"price": "CHF 268.-"
}
No notes defined.