crablog/static/index.tera
2018-10-11 23:35:09 +08:00

22 lines
416 B
Plaintext

{% extends "base" %}
{% block body %}
<header>
<section class="container">
<h1>Rubble</h1>
<p>description of rubble application</p>
</section>
</header>
<content>
<section class="container">
{% for post in posts %}
{% set link = post.url %}
<div class="post">
<a href="{{ link }}">{{ post.title }}</a>
<p>{{ post.body }}</p>
</div>
{% endfor %}
</section>
</content>
{% endblock body %}