home: wip news

This commit is contained in:
Agahnim 2026-03-23 15:27:52 +01:00
parent f360250b57
commit a753fd3497
9 changed files with 507 additions and 19 deletions

View file

@ -54,6 +54,26 @@
</socials>
<img width="200px" src="/static/assets/gifs/divider2.gif" />
</box>
<box id="newsbox">
<website-news>
<img src="/static/assets/gifs/updates.gif" />
{% for article in news %}
<article-entry>
<time datetime="{{ article.date }}">
{{ article.date.format("%d/%m/%Y") }}
</time>
<article-body>
{{ article.body }}
</article-body>
</article-entry>
{% else %}
<ominous-message>
Nothing to see here, for now...
</ominous-message>
{% endfor %}
</website-news>
</box>
</boxes>
</home-content>