undo fancy menu thing :(

This commit is contained in:
Nicholas Orlowsky 2024-05-16 20:28:21 +02:00
parent 0d3d90633f
commit 79318abaed
Signed by: nickorlow
GPG key ID: 838827D8C4611687

View file

@ -1,9 +1,8 @@
<h1>Blog</h1> <h1>Blog</h1>
{% for blog in blogs %} {% for blog in blogs %}
<div style="display:flex;justify-content:flex-start; padding-bottom: 5px; flex-wrap: wrap;"> <div style="margin-top: 10px; margin-bottom: 10px;">
<div style="display:flex;flex-grow:1;"> <h3 style="margin-bottom: 0px;">
<p style="margin-bottom: 0px; padding-right: 8px; text-align: left;">
<a <a
{% if blog.url.contains("https://") %} {% if blog.url.contains("https://") %}
href="{{ blog.url }}" href="{{ blog.url }}"
@ -13,12 +12,7 @@
> >
[ {{ blog.title }} ] [ {{ blog.title }} ]
</a> </a>
</p> </h3>
<div style="flex-grow: 1; border-bottom: 1px dotted black;min-width:0px;"></div> <p style="margin-top: 0px;"><i>{{ blog.date }}</i></p>
</div>
<div style="display: flex;flex-grow:1;">
<div style="flex-grow: 1; border-bottom: 1px dotted black;"></div>
<p style="margin-bottom: 0px; padding-left: 8px;text-align: right;"><i>{{ blog.date }}</i></p>
</div>
</div> </div>
{% endfor %} {% endfor %}