samhuri.net/templates/post-text.html

18 lines
404 B
HTML

{% extends "samhuri.net.html" %}
{% block title %}
<title>{{ site.title }}: {{ post.title }}</title>
{% endblock %}
{% 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 %}