22 lines
627 B
HTML
22 lines
627 B
HTML
|
{% 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">
|
||
|
<h2 class="text-2xl font-semibold hover:underline">{{fm.title}}</h2>
|
||
|
<hr>
|
||
|
<ul>
|
||
|
<li>On: {{fm.posted}}</li>
|
||
|
<li>By: {{fm.author}}</li>
|
||
|
<li>Reading time:{{fm.estimated_reading_time}} min</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</a>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endblock content %}
|