crablog/templates/homepage.html

36 lines
1.0 KiB
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">
2019-05-02 09:54:17 +04:00
<header>
<section class="container">
<h1>{{ setting.title }}</h1>
<p>{{ setting.description }}</p>
<nav>
<a href="/">HOMEPAGE</a>
2019-05-11 06:26:40 +04:00
<a href="/portfolios">PORTFOLIOS</a>
2019-05-02 09:54:17 +04:00
<a href="/about">ABOUT</a>
</nav>
</section>
</header>
2019-01-04 18:28:51 +04:00
2019-05-02 09:54:17 +04:00
<section class="container">
{% for article in articles %}
<section class="article">
<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>
<section class="yue desc">
{{ article.description|safe }}
</section>
2018-10-12 21:52:11 +04:00
</section>
2019-05-02 09:54:17 +04:00
{% endfor %}
2018-10-12 21:52:11 +04:00
2019-05-02 09:54:17 +04:00
</section>
2019-01-04 18:28:51 +04:00
</section>
2018-10-10 11:19:33 +04:00
{% endblock body %}