poster.html 462 B

123456789101112131415161718
  1. {% extends "_work_no_all.html"%}
  2. {% set poster_selected = True %}
  3. {% set work_path = "work/poster" %}
  4. {% block main %}
  5. {% for image in sorted(images("work/poster"), reverse=True) %}
  6. <figure>
  7. <img class="tile" src="{{ (image.main or image.filenames[0]) | static }}">
  8. <figcaption class="hbox">
  9. <div class="caption">
  10. <h1>{{ image.name }} / {{ image.year }}</h1>
  11. {{ image.category }}
  12. </div>
  13. </figcaption>
  14. </figure>
  15. {% endfor %}
  16. {% endblock %}