nws-site/templates/blog.html

19 lines
511 B
HTML
Raw Permalink Normal View History

2024-05-15 20:12:14 +00:00
<h1>Blog</h1>
{% for blog in blogs %}
2024-05-16 18:28:21 +00:00
<div style="margin-top: 10px; margin-bottom: 10px;">
<h3 style="margin-bottom: 0px;">
2024-05-16 18:08:41 +00:00
<a
{% if blog.url.contains("https://") %}
href="{{ blog.url }}"
{% else %}
href="/blogs/{{ blog.url }}"
{% endif %}
>
[ {{ blog.title }} ]
</a>
2024-05-16 18:28:21 +00:00
</h3>
<p style="margin-top: 0px;"><i>{{ blog.date }}</i></p>
2024-05-15 20:12:14 +00:00
</div>
{% endfor %}