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