poster.html 476 B

123456789101112131415161718
  1. {% extends "_work_no_all.html"%}
  2. {% set poster_selected = True %}
  3. {% block main %}
  4. {% for image in images('work/poster') %}
  5. <figure class="v">
  6. <img src="{{ 'image/tile.jpg' | static }}" alt="Ejemplo">
  7. <!-- <svg width="1px" height="1px" style="background-color: gray"></svg> -->
  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 %}