2018-05-13 19:19:23 +02:00
|
|
|
{% macro post_card(article) %}
|
2018-06-12 19:05:33 +02:00
|
|
|
{% if article.author.display_name %}
|
|
|
|
{% set name = article.author.display_name %}
|
|
|
|
{% else %}
|
|
|
|
{% set name = article.author.username %}
|
|
|
|
{% endif %}
|
2018-05-13 22:33:21 +02:00
|
|
|
<div class="card">
|
2018-05-13 19:19:23 +02:00
|
|
|
<h3><a href="{{ article.url }}">{{ article.post.title }}</a></h3>
|
2018-06-12 13:57:30 +02:00
|
|
|
<main
|
2018-06-19 13:22:26 +02:00
|
|
|
<p>{{ article.post.content | safe | striptags | truncate(length=200) }}</p>
|
2018-06-12 13:57:30 +02:00
|
|
|
</main>
|
|
|
|
<p class="author">
|
2018-06-26 17:58:11 +02:00
|
|
|
{{ "By {{ link_1 }}{{ link_2 }}{{ link_3 }}{{ name | escape }}{{ link_4 }}" | _(
|
2018-06-17 21:54:59 +02:00
|
|
|
link_1='<a href="/@/',
|
|
|
|
link_2=article.author.fqn,
|
|
|
|
link_3='/">',
|
|
|
|
name=name,
|
|
|
|
link_4="</a>")
|
|
|
|
}}
|
2018-06-17 22:22:34 +02:00
|
|
|
⋅ {{ article.date | date(format="%B %e") }}
|
2018-06-12 13:57:30 +02:00
|
|
|
</p>
|
2018-05-13 19:19:23 +02:00
|
|
|
</div>
|
|
|
|
{% endmacro post_card %}
|
2018-07-06 19:29:36 +02:00
|
|
|
{% macro input(name, label, errors, form, type="text") %}
|
|
|
|
<label for="{{ name }}">{{ label | _ }}</label>
|
|
|
|
{% if errors is defined and errors[name] %}
|
|
|
|
{% for err in errors[name] %}
|
|
|
|
<p class="error">{{ err.message | _ }}</p>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
<input type="{{ type }}" id="{{ name }}" name="{{ name }}" value="{{ form[name] | default(value="") }}"/>
|
|
|
|
{% endmacro input %}
|