illustration.html 412 B

123456789101112131415161718192021
  1. {% extends "_work_no_all.html"%}
  2. {% set illustration_selected = True %}
  3. {% block main %}
  4. <style>
  5. :root {
  6. --columns: 3;
  7. }
  8. </style>
  9. {% for _ in range(15) %}
  10. <figure>
  11. <svg width="1.75px" height="1px" style="background-color: gray"></svg>
  12. <figcaption class="hbox">
  13. <div class="caption">
  14. <h1>Work Name Here / Year</h1>
  15. illustration
  16. </div>
  17. </figcaption>
  18. </figure>
  19. {% endfor %}
  20. {% endblock %}