page.html 1.1 KB

12345678910111213141516171819202122232425262728
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <main class="x xdc lg-xdr lg-xw bdb-gray">
  4. <section class="w100 lg-w50 hg-w1200">
  5. {% for block in doc.blocks %}
  6. {% if block.type == 'text' %}
  7. <section class="pb1-7 copy-h copy-page copy {% if not loop.first %} bdt-gray{% endif %}">
  8. {{ block.value | md | safe }}
  9. </section>
  10. {% elif block.type == 'image' %}
  11. <figure class="img-page {% if not loop.first %} bdt-gray{% endif %}">
  12. <img src="{{ url_for('static', path='/images/cache/' + block.url) | to_srcset('page', block.info.width, doc.meta.path, size=2, size_attr=False) }}"
  13. srcset="{{ url_for('static', path='/images/cache/' + block.url) | to_srcset('page', block.info.width, doc.meta.path) }}"
  14. sizes="(max-width: 759px) 100vw, 50vw"
  15. alt="{{ block.url }}"
  16. width="{{ block.info.width }}"
  17. height="{{ block.info.height }}"
  18. >
  19. </figure>
  20. {% endif %}
  21. {% endfor %}
  22. </section>
  23. <section class="w100 lg-w50 lg-x lg-xdc lg-bdl-pink hg-x1">
  24. </section>
  25. </main>
  26. {% include "partials/footer.html" %}
  27. {% endblock %}