work.html 517 B

12345678910111213141516171819
  1. {% extends "_base.html" %}
  2. {% set work_selected = True %}
  3. {% set all_selected = False if no_all_selected else True %}
  4. {% block main %}
  5. {% for image in images('work/all') %}
  6. <figure>
  7. <img src="{{ image.filenames[0] | static }}" alt="Ejemplo">
  8. <!-- <svg width="1px" height="1px" style="background-color: gray"></svg> -->
  9. <figcaption class="hbox">
  10. <div class="caption">
  11. <h1>{{ image.name }} / {{ image.year }}</h1>
  12. {{ image.category }}
  13. </div>
  14. </figcaption>
  15. </figure>
  16. {% endfor %}
  17. {% endblock %}