oswilno/server/assets/templates/news.html

18 lines
496 B
HTML
Raw Normal View History

2022-07-13 17:25:51 +02:00
{% extends "base.html" %}
{% block content %}
<ow-articles>
{% for article in news %}
<news-article
2022-07-14 14:07:04 +02:00
article-id="{{ article.id }}"
article-title="{{ article.title }}"
status="{{ article.status.as_str() }}"
published-at="{{ article.published_at|opt_time }}"
created-at="{{ article.created_at }}"
2022-07-14 19:36:33 +02:00
hide-status="true"
2022-07-13 17:25:51 +02:00
>
{{article.body|safe}}
</news-article>
{% endfor %}
</ow-articles>
{% endblock %}