123456789101112131415161718 |
- {% extends "_work_no_all.html"%}
- {% set poster_selected = True %}
- {% set work_path = "work/poster" %}
- {% block main %}
- {% for image in images("work/poster") %}
- <figure>
- <img class="tile" src="{{ image.main or image.filenames[0] | static }}">
- <figcaption class="hbox">
- <div class="caption">
- <h1>{{ image.name }} / {{ image.year }}</h1>
- {{ image.category }}
- </div>
- </figcaption>
- </figure>
- {% endfor %}
- {% endblock %}
|