branding.html 402 B

12345678910111213141516171819202122
  1. {% extends "_work_no_all.html"%}
  2. {% set branding_selected = True %}
  3. {% block main %}
  4. <style>
  5. :root {
  6. --columns: 4;
  7. }
  8. </style>
  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 / Year</h1>
  15. branding
  16. </div>
  17. </figcaption>
  18. </figure>
  19. {% endfor %}
  20. {% endblock %}