crablog/templates/homepage.html

29 lines
768 B
HTML
Raw Normal View History

2019-04-18 17:22:44 +04:00
{% extends "base.html" %}
2018-10-10 11:19:33 +04:00
{% block title %}{{ setting.title }}{% endblock title %}
2018-10-10 11:19:33 +04:00
{% block body %}
2019-01-04 18:28:51 +04:00
<section class="full-page">
2018-10-11 19:35:09 +04:00
<header>
<section class="container">
2018-10-23 12:24:08 +04:00
<h1>{{ setting.title }}</h1>
<p>{{ setting.description }}</p>
2018-10-11 19:35:09 +04:00
</section>
</header>
2019-01-04 18:28:51 +04:00
2018-10-11 19:35:09 +04:00
<section class="container">
2019-04-18 17:22:44 +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">
2019-04-18 17:22:44 +04:00
{{ article.description|safe }}
2018-10-12 21:52:11 +04:00
</section>
</section>
2019-04-18 17:22:44 +04:00
{% endfor %}
2018-10-12 21:52:11 +04:00
2018-10-11 19:35:09 +04:00
</section>
2019-01-04 18:28:51 +04:00
</section>
2018-10-10 11:19:33 +04:00
{% endblock body %}