news.html 390 B

12345678910111213141516171819202122
  1. {% extends "_base.html"%}
  2. {% set news_selected = True %}
  3. {% block main %}
  4. <style>
  5. :root {
  6. --columns: 3;
  7. }
  8. </style>
  9. {% for _ in range(15) %}
  10. <figure>
  11. <svg width="16px" height="9px" style="background-color: gray"></svg>
  12. <figcaption class="hbox">
  13. <div class="caption">
  14. <h1>News Title Here / Date</h1>
  15. news
  16. </div>
  17. </figcaption>
  18. </figure>
  19. {% endfor %}
  20. {% endblock %}