nws-site/templates/blog.html
Nicholas Orlowsky 6bd69f6c5b
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Failing after 1h5m57s
RIP NWS
2025-04-04 16:49:33 -04:00

23 lines
590 B
HTML

{%- import "shutdown_warn.html" as warn -%}
<h1>Blog</h1>
{% call warn::shutdown_warn() %}
{% for blog in blogs %}
<div style="margin-top: 10px; margin-bottom: 10px;">
<h3 style="margin-bottom: 0px;">
<a
{% if blog.url.contains("https://") %}
href="{{ blog.url }}"
{% else %}
href="/blogs/{{ blog.url }}"
{% endif %}
>
[ {{ blog.title }} ]
</a>
</h3>
<p style="margin-top: 0px;"><i>{{ blog.date }}</i></p>
</div>
{% endfor %}