timeline content

This commit is contained in:
m
2026-03-14 15:44:32 +01:00
parent 99c97ea1fd
commit 67f1181edd
3 changed files with 222 additions and 4 deletions

View File

@@ -21,6 +21,7 @@
href="{{ url_for('static', filename='css/blog.css') }}"
rel="stylesheet"
/>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>

View File

@@ -1,8 +1,8 @@
<div class="max-w-3xl mx-auto px-6 py-16">
<ol class="relative border-l border-gray-300">
<p>hint</p>
{% for item in timeline %}
<li class="mb-10 ml-6">
{{ post.timeline }}
<!--li class="mb-10 ml-6">
<span
class="absolute flex items-center justify-center w-6 h-6 bg-gray-200 rounded-full -left-3"
>
@@ -11,7 +11,6 @@
<h3 class="font-semibold text-lg">{{ item.title }}</h3>
<p class="text-gray-600">{{ item.description }}</p>
</li>
{% endfor %}
</li-->
</ol>
</div>