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