BLOG/templates/post.html

28 lines
727 B
HTML
Raw Normal View History

2024-09-30 22:00:53 +02:00
{% extends "base.html" %}
{% block title %}{{ meta_data.title }} | by {{ meta_data.author }} {% endblock title %}
{% block header %}
2024-10-01 22:14:15 +02:00
<a class="return" href="/">ℵ₁ | IMK's BLOG</a>
2024-09-30 22:00:53 +02:00
<div class="relative mt-2 ml-4 flex w-full justify-center">
<p class="title">{{ meta_data.title }}</p>
2024-10-01 22:14:15 +02:00
<p>{{meta_data.description}}</p>
2024-09-30 22:00:53 +02:00
<hr>
</div>
{% endblock header %}
{% block content %}
<article
id="article-content"
>
{{ post | safe }}
</article>
{% endblock content %}
{% block footer %}
<div class="flex w-full h-full justify-center items-center">
<img src="/static/assets/signature.svg" alt="IMK (signature)" style="max-width:2%;height:auto;">
2024-10-01 22:14:15 +02:00
<hr>
2024-09-30 22:00:53 +02:00
</div>
{% endblock footer %}