mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
19 lines
480 B
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 }}">→ {{ post.title }}</a></h1>
|
|
<time>{{ post.date }}</time>
|
|
<a class="permalink" href="{{ post.url }}">∞</a>
|
|
</header>
|
|
{{ post.body }}
|
|
</article>
|
|
<div class="row clearfix">
|
|
<p class="fin clearfix"><i class="fa fa-code"></i></p>
|
|
</div>
|
|
{% endblock %}
|