12345678910111213141516171819202122 |
- {% extends "_base.html"%}
- {% set news_selected = True %}
- {% block main %}
- <style>
- :root {
- --columns: 3;
- }
- </style>
- {% for _ in range(15) %}
- <figure>
- <svg width="16px" height="9px" style="background-color: gray"></svg>
- <figcaption class="hbox">
- <div class="caption">
- <h1>News Title Here / Date</h1>
- news
- </div>
- </figcaption>
- </figure>
- {% endfor %}
- {% endblock %}
|