branding.html 446 B

1234567891011121314151617181920212223
  1. {% extends "_work_no_all.html" %}
  2. {% set branding_selected = True %}
  3. {% block style %}
  4. :root {
  5. --columns: 4;
  6. }
  7. {% endblock %}
  8. {% block main %}
  9. {% for _ in range(12) %}
  10. <figure>
  11. <svg width="1px" height="1px" style="background-color: gray"></svg>
  12. <figcaption class="hbox">
  13. <div class="caption">
  14. <h1>Work Name Here / <time>Year</time></h1>
  15. {{ 'branding' | lang }}
  16. </div>
  17. </figcaption>
  18. </figure>
  19. {% endfor %}
  20. {% endblock %}