mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
24 lines
588 B
HTML
24 lines
588 B
HTML
{% extends "samhuri.net.html" %}
|
|
|
|
{% block body %}
|
|
{% for post in posts %}
|
|
<article class="container">
|
|
<header>
|
|
{% if post.isLink %}
|
|
<h2><a href="{{ post.link }}">→ {{ post.title }}</a></h2>
|
|
<time>{{ post.formattedDate }}</time>
|
|
<a class="permalink" href="{{ post.path }}">∞</a>
|
|
{% else %}
|
|
<h2><a href="{{ post.path }}">{{ post.title }}</a></h2>
|
|
<time>{{ post.formattedDate }}</time>
|
|
{% endif %}
|
|
</header>
|
|
|
|
{{ post.body }}
|
|
</article>
|
|
<div class="row clearfix">
|
|
<p class="fin"><i class="fa fa-code"></i></p>
|
|
</div>
|
|
|
|
{% endfor %}
|
|
{% endblock %}
|