samhuri.net/templates/post-link.html

19 lines
480 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.link }}">&rarr; {{ post.title }}</a></h1>
<time>{{ post.date }}</time>
<a class="permalink" href="{{ post.url }}">&infin;</a>
</header>
{{ post.body }}
</article>
<div class="row clearfix">
<p class="fin clearfix"><i class="fa fa-code"></i></p>
</div>
{% endblock %}