39 lines
1.5 KiB
Plaintext
39 lines
1.5 KiB
Plaintext
{% macro post_card(article) %}
|
|
{% if article.author.display_name %}
|
|
{% set name = article.author.display_name %}
|
|
{% else %}
|
|
{% set name = article.author.username %}
|
|
{% endif %}
|
|
<div class="card">
|
|
<h3><a href="{{ article.url }}">{{ article.post.title }}</a></h3>
|
|
<main
|
|
<p>{{ article.post.content | safe | striptags | truncate(length=200) }}</p>
|
|
</main>
|
|
<p class="author">
|
|
{{ "By {{ link_1 }}{{ link_2 }}{{ link_3 }}{{ name | escape }}{{ link_4 }}" | _(
|
|
link_1='<a href="/@/',
|
|
link_2=article.author.fqn,
|
|
link_3='/">',
|
|
name=name,
|
|
link_4="</a>")
|
|
}}
|
|
⋅ {{ article.date | date(format="%B %e") }}
|
|
⋅ <a href="{{article.blog_url}}">{{article.blog.title}}</a>
|
|
</p>
|
|
</div>
|
|
{% endmacro post_card %}
|
|
{% macro input(name, label, errors, form, type="text", props="", optional=false) %}
|
|
<label for="{{ name }}">
|
|
{{ label | _ }}
|
|
{% if optional %}
|
|
<small>{{ "Optional" | _ }}</small>
|
|
{% endif %}
|
|
</label>
|
|
{% if errors is defined and errors[name] %}
|
|
{% for err in errors[name] %}
|
|
<p class="error">{{ err.message | default(value="Unknown error") | _ }}</p>
|
|
{% endfor %}
|
|
{% endif %}
|
|
<input type="{{ type }}" id="{{ name }}" name="{{ name }}" value="{{ form[name] | default(value="") }}" {{ props | safe }}/>
|
|
{% endmacro input %}
|