product.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <main class="x xdc md-xdr md-xw">
  4. <section class="md-dn bdb-pink">
  5. {% with block = doc.blocks.images[0] %}
  6. {% include "partials/block-image.html" %}
  7. {% endwith %}
  8. </section>
  9. <section class="w100 md-w50 md-x md-xdc md-xo2 md-bdl-pink hg-x1">
  10. <div class="sticky-prod-info">
  11. <section class="bdb-gray pt0-75 pr0-75 pb3 pl0-75 copy-h-reset">
  12. <div class="bgc-bright-black fgc-dark-gray bd-dark-gray btn-product-code dib copy ">{{ doc.meta.code }}</div>
  13. <div class="pt0-5 pb1-7 copy">
  14. <h2 class="pb1">{{ doc.meta.title }}</h2>
  15. <span class="dib pb1">{{ doc.meta.price }} {{ cart.meta.currency }}</span>
  16. {% for block in doc.blocks.texts %}
  17. {% include "partials/block-text.html" %}
  18. {% endfor %}
  19. </div>
  20. {% include "partials/product-form.html" %}
  21. </section>
  22. {% if size_guide %}
  23. <section class="pt0-75 pr0-75 pb0-75 pl0-75 copy-h-reset product-size-guide bdb-gray">
  24. <div class="copy">
  25. {% for block in size_guide.blocks %}
  26. {{ block.value | md | safe }}
  27. {% endfor %}
  28. </div>
  29. </section>
  30. {% endif %}
  31. </div>
  32. <section class="dn md-db psr md-h100">
  33. <div class="psa t0 l50 md-h100 md-bdl-rubin"></div>
  34. <div class="dn md-db psa l0 b0 sunset" style="background-image: url('{{ url_for('static', path='images/sunset-green.png')}}')"></div>
  35. </section>
  36. </section>
  37. <section class="w100 md-w50 hg-w1200 md-xo1">
  38. {# we set the first image with hide / display class toggles #}
  39. {% for block in doc.blocks.images %}
  40. {% if loop.first %}{% set img_hide = True %}{% endif %}
  41. {% if loop.last %}{% set block_last = True %}{% endif %}
  42. {% include "partials/block-image.html" %}
  43. {% endfor %}
  44. </section>
  45. <section class="w100 md-xo3 pt7 copy-h-reset-weight bdt-gray">
  46. <h3 class="fs-big pr0-75 pl0-75 pb1-25">More hardware</h3>
  47. <div class="dg grid-2 related-products bdt-gray">
  48. {% for product in related_products %}
  49. {% set block = product.blocks.images[0] %}
  50. {% include "partials/grid-product.html" %}
  51. {% endfor %}
  52. </div>
  53. </section>
  54. </main>
  55. {% include "partials/footer.html" %}
  56. {% endblock %}