mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
11 lines
199 B
HTML
11 lines
199 B
HTML
{% extends "samhuri.net.html" %}
|
|
|
|
{% block body %}
|
|
<div class="container">
|
|
<h1>{{ title }}</h1>
|
|
</div>
|
|
|
|
{% for post in posts %}
|
|
{% include "partial-post.html" post %}
|
|
{% endfor %}
|
|
{% endblock %}
|