2018-05-09 19:09:52 +00:00
|
|
|
{% extends "base" %}
|
2018-05-13 17:19:23 +00:00
|
|
|
{% import "macros" as macros %}
|
2018-05-09 19:09:52 +00:00
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ blog.title }}
|
|
|
|
{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-05-12 13:31:09 +00:00
|
|
|
<h1>{{ blog.title }} (~{{ blog.actor_id }})</h1>
|
|
|
|
<p>{{ blog.summary }}</p>
|
|
|
|
|
2018-06-10 18:16:25 +00:00
|
|
|
<section>
|
2018-06-17 15:26:15 +00:00
|
|
|
<h2>{{ "Latest articles" | _ }}</h2>
|
2018-06-10 18:16:25 +00:00
|
|
|
{% if recents | length < 1 %}
|
2018-06-17 15:26:15 +00:00
|
|
|
<p>{{ "No posts to see here yet." | _ }}</p>
|
2018-06-10 18:16:25 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if is_author %}
|
2018-06-17 15:26:15 +00:00
|
|
|
<a href="new" class="button inline-block">{{ "New article" | _ }}</a>
|
2018-06-10 18:16:25 +00:00
|
|
|
{% endif %}
|
|
|
|
<div class="cards">
|
|
|
|
{% for article in recents %}
|
|
|
|
{{ macros::post_card(article=article) }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</section>
|
2018-05-09 19:09:52 +00:00
|
|
|
{% endblock content %}
|