BLOG/templates/post.html

27 lines
691 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 %}
<div class="relative mt-2 ml-4 flex w-full justify-center">
<a class="return" href="/">ℵ₁ | IMK's BLOG</a>
<p class="title">{{ meta_data.title }}</p>
<hr>
</div>
{% endblock header %}
{% block content %}
<article
id="article-content"
>
{{ post | safe }}
</article>
{% endblock content %}
{% block footer %}
<hr>
<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;">
</div>
{% endblock footer %}