crablog/static/index.tera

26 lines
667 B
Plaintext
Raw Normal View History

2018-10-10 11:19:33 +04:00
{% extends "base" %}
{% block body %}
2018-10-11 19:35:09 +04:00
<header>
<section class="container">
<h1>Rubble</h1>
<p>description of rubble application</p>
2018-10-11 19:35:09 +04:00
</section>
</header>
<content>
<section class="container">
2018-10-23 10:18:56 +04:00
{% for article in articles %}
2018-10-12 21:52:11 +04:00
<section class="article">
2018-10-23 10:18:56 +04:00
<p class="mate">{{ article.timestamp | date(format="%B %d, %Y") }}</p>
<a class="title" href="{% if article.article.url %}{{ article.article.url }}{% else %}archives/{{ article.article.id }}{% endif %}">{{ article.article.title }}</a>
2018-10-22 13:11:21 +04:00
<section class="yue desc">
2018-10-23 10:18:56 +04:00
{{ article.description }}
2018-10-12 21:52:11 +04:00
</section>
</section>
2018-10-10 11:19:33 +04:00
{% endfor %}
2018-10-12 21:52:11 +04:00
2018-10-11 19:35:09 +04:00
</section>
</content>
2018-10-10 11:19:33 +04:00
{% endblock body %}