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