2024-09-30 22:00:53 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}ALEPH 1 | IMK'S BLOG{% endblock title %}
|
|
|
|
{% block content %}
|
|
|
|
<div>
|
|
|
|
<h1 class="htitle">ℵ₁ | IMK'S BLOG</h1>
|
|
|
|
<hr>
|
|
|
|
{% for fm in posts %}
|
|
|
|
<a class="mb-3" href="/posts/{{fm.file_name}}">
|
|
|
|
<div class="post">
|
2024-10-01 13:35:25 +02:00
|
|
|
<h2 class="text-2xl font-semibold hover:underline"> {{fm.title}}</h2><p class="pinned-{{fm.pinned}}">!!</p>
|
2024-09-30 22:00:53 +02:00
|
|
|
<hr>
|
|
|
|
<ul>
|
|
|
|
<li>On: {{fm.posted}}</li>
|
|
|
|
<li>By: {{fm.author}}</li>
|
|
|
|
<li>Reading time:{{fm.estimated_reading_time}} min</li>
|
2024-10-01 13:35:25 +02:00
|
|
|
<li>Tags: {{fm.tags}}</li>
|
2024-09-30 22:00:53 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|