1234567891011121314151617181920212223 |
- {% extends "_work_no_all.html" %}
- {% set branding_selected = True %}
- {% block style %}
- :root {
- --columns: 4;
- }
- {% endblock %}
- {% block main %}
- {% 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 / <time>Year</time></h1>
- {{ 'branding' | lang }}
- </div>
- </figcaption>
- </figure>
- {% endfor %}
- {% endblock %}
|