1234567891011121314151617181920212223 |
- {% extends "_work_no_all.html"%}
- {% set illustration_selected = True %}
- {% set work_path = "work/illustration" %}
- {% block main %}
- <style>
- :root {
- --columns: 3;
- }
- </style>
- {% for image in sorted(images("work/illustration"), reverse=True) %}
- <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 %}
|