19 lines
558 B
HTML
19 lines
558 B
HTML
|
<h1>Blog</h1>
|
||
|
|
||
|
{% for blog in blogs %}
|
||
|
<div style="display:flex;justify-content:space-around; padding-bottom: 5px;">
|
||
|
<p style="margin-bottom: 0px; padding-right: 8px;">
|
||
|
<a
|
||
|
{% if blog.url.contains("https://") %}
|
||
|
href="{{ blog.url }}"
|
||
|
{% else %}
|
||
|
href="/blogs/{{ blog.url }}"
|
||
|
{% endif %}
|
||
|
>
|
||
|
[ {{ blog.title }} ]
|
||
|
</a></p>
|
||
|
<div style="flex-grow: 1; border-bottom: 1px dotted black;"></div>
|
||
|
<p style="margin-bottom: 0px; padding-left: 8px;"><i>{{ blog.date }}</i></p>
|
||
|
</div>
|
||
|
{% endfor %}
|