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 / <time>Year</time></h1>
- {{ 'editorial' | lang }}
- </div>
- </figcaption>
- </figure>
- {% endfor %}
- {% endblock %}
|