123456789101112131415161718192021 |
- {% extends "_work_no_all.html"%}
- {% set illustration_selected = True %}
- {% block main %}
- <style>
- :root {
- --columns: 3;
- }
- </style>
- {% for _ in range(15) %}
- <figure>
- <svg width="1.75px" height="1px" style="background-color: gray"></svg>
- <figcaption class="hbox">
- <div class="caption">
- <h1>Work Name Here / Year</h1>
- illustration
- </div>
- </figcaption>
- </figure>
- {% endfor %}
- {% endblock %}
|