{% sw_extends '@Storefront/storefront/utilities/offcanvas.html.twig' %}
{% block utilities_offcanvas_content %}
<div class="product-detail-description tab-pane-container">
<div class="h3 product-detail-description-title">
{{ "wlcustom.detail.naehrwerte"|trans }}
</div>
<div class="product-detail-description-text tab_naehrwerte" itemprop="technic">
<div class="detail-table-container">
<p>Nährwertangaben pro 100g:</p>
<table>
<tbody>
<tr>
<td>Brennwert in KJ</td>
<td>{% if page.product.translated.customFields.custom_naehrwerte_bw_kj %}{{ page.product.translated.customFields.custom_naehrwerte_bw_kj }}{% else %}0{% endif %}</td>
</tr>
<tr>
<td>Brennwert in Kcal</td>
<td>{% if page.product.translated.customFields.custom_naehrwerte_bw_kcal %}{{ page.product.translated.customFields.custom_naehrwerte_bw_kcal }}{% else %}0{% endif %}</td>
</tr>
<tr>
<td>Fett</td>
<td>{% if page.product.translated.customFields.custom_naehrwerte_fett %}{{ page.product.translated.customFields.custom_naehrwerte_fett }} g{% else %}0 g{% endif %}</td>
</tr>
<tr>
<td>davon gesättigte Fettsäuren</td>
<td>{% if page.product.translated.customFields.custom_naehrwerte_fettsaeuren %}{{ page.product.translated.customFields.custom_naehrwerte_fettsaeuren }} g{% else %}0 g{% endif %}</td>
</tr>
<tr>
<td>Kohlenhydrate</td>
<td>{% if page.product.translated.customFields.custom_naehrwerte_kohlenhydrrate %}{{ page.product.translated.customFields.custom_naehrwerte_kohlenhydrrate }} g{% else %}0 g{% endif %}</td>
</tr>
<tr>
<td>davon Zucker g</td>
<td>{% if page.product.translated.customFields.custom_naehrwerte_zucker %}{{ page.product.translated.customFields.custom_naehrwerte_zucker }}{% else %}0{% endif %}</td>
</tr>
<tr>
<td>Eiweiß</td>
<td>{% if page.product.translated.customFields.custom_naehrwerte_eiweiss %}{{ page.product.translated.customFields.custom_naehrwerte_eiweiss }} g{% else %}0 g{% endif %}</td>
</tr>
<tr>
<td>Salz</td>
<td>{% if page.product.translated.customFields.custom_naehrwerte_salz %}{{ page.product.translated.customFields.custom_naehrwerte_salz }} g{% else %}0 g{% endif %}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
{% endblock %}