samhuri.net/templates/post-text.html
2019-12-03 18:20:24 -08:00

14 lines
320 B
HTML

{% extends "samhuri.net.html" %}
{% block body %}
<article class="container">
<header>
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<time>{{ post.date }}</time>
</header>
{{ post.body }}
</article>
<div class="row clearfix">
<p class="fin"><i class="fa fa-code"></i></p>
</div>
{% endblock %}