{% extends "base.html" %} {% block content %}
{% with block = doc.blocks.images[0] %} {% include "partials/block-image.html" %} {% endwith %}
{{ doc.meta.code }}

{{ doc.meta.title }}

{{ doc.meta.price }} {{ cart.meta.currency }} {% for block in doc.blocks.texts %} {% include "partials/block-text.html" %} {% endfor %}
{% include "partials/product-form.html" %}
{% if size_guide %}
{% for block in size_guide.blocks %} {{ block.value | md | safe }} {% endfor %}
{% endif %}
{# we set the first image with hide / display class toggles #} {% for block in doc.blocks.images %} {% if loop.first %}{% set img_hide = True %}{% endif %} {% if loop.last %}{% set block_last = True %}{% endif %} {% include "partials/block-image.html" %} {% endfor %}

More hardware

{% include "partials/footer.html" %} {% endblock %}