2018-05-13 17:19:23 +00:00
|
|
|
{% macro post_card(article) %}
|
2018-05-13 20:33:21 +00:00
|
|
|
<div class="card">
|
2018-05-13 17:19:23 +00:00
|
|
|
<h3><a href="{{ article.url }}">{{ article.post.title }}</a></h3>
|
2018-06-12 11:57:30 +00:00
|
|
|
<main
|
2018-09-04 11:26:13 +00:00
|
|
|
<p>
|
|
|
|
{% if article.post.subtitle | length > 0 %}
|
|
|
|
{{ article.post.subtitle }}
|
|
|
|
{% else %}
|
|
|
|
{{ article.post.content | safe | striptags | truncate(length=200) }}
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
2018-06-12 11:57:30 +00:00
|
|
|
</main>
|
|
|
|
<p class="author">
|
2018-06-26 15:58:11 +00:00
|
|
|
{{ "By {{ link_1 }}{{ link_2 }}{{ link_3 }}{{ name | escape }}{{ link_4 }}" | _(
|
2018-06-17 19:54:59 +00:00
|
|
|
link_1='<a href="/@/',
|
|
|
|
link_2=article.author.fqn,
|
|
|
|
link_3='/">',
|
2018-07-26 14:36:19 +00:00
|
|
|
name=article.author.name,
|
2018-06-17 19:54:59 +00:00
|
|
|
link_4="</a>")
|
|
|
|
}}
|
2018-06-17 20:22:34 +00:00
|
|
|
⋅ {{ article.date | date(format="%B %e") }}
|
2018-07-26 17:00:23 +00:00
|
|
|
⋅ <a href="/~/{{ article.blog.fqn }}/">{{ article.blog.title }}</a>
|
2018-06-12 11:57:30 +00:00
|
|
|
</p>
|
2018-05-13 17:19:23 +00:00
|
|
|
</div>
|
|
|
|
{% endmacro post_card %}
|
2018-07-27 18:31:47 +00:00
|
|
|
{% macro input(name, label, errors, form, type="text", props="", optional=false, default='', details='') %}
|
2018-07-19 09:14:44 +00:00
|
|
|
<label for="{{ name }}">
|
|
|
|
{{ label | _ }}
|
|
|
|
{% if optional %}
|
|
|
|
<small>{{ "Optional" | _ }}</small>
|
|
|
|
{% endif %}
|
2018-07-27 18:31:47 +00:00
|
|
|
<small>{{ details }}</small>
|
2018-07-19 09:14:44 +00:00
|
|
|
</label>
|
2018-07-06 17:29:36 +00:00
|
|
|
{% if errors is defined and errors[name] %}
|
|
|
|
{% for err in errors[name] %}
|
2018-07-07 20:57:53 +00:00
|
|
|
<p class="error">{{ err.message | default(value="Unknown error") | _ }}</p>
|
2018-07-06 17:29:36 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2018-07-27 17:05:36 +00:00
|
|
|
{% set default = default[name] | default(value="") %}
|
|
|
|
<input type="{{ type }}" id="{{ name }}" name="{{ name }}" value="{{ form[name] | default(value=default) }}" {{ props | safe }}/>
|
2018-07-06 17:29:36 +00:00
|
|
|
{% endmacro input %}
|
2018-07-25 12:29:34 +00:00
|
|
|
{% macro paginate(page, total, previous="Previous page", next="Next page") %}
|
|
|
|
<div class="pagination">
|
|
|
|
{% if page != 1 %}
|
|
|
|
<a href="?page={{ page - 1 }}">{{ previous | _ }}</a>
|
|
|
|
{% endif %}
|
|
|
|
{% if page < total %}
|
|
|
|
<a href="?page={{ page + 1 }}">{{ next | _ }}</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endmacro %}
|
2018-07-25 16:18:41 +00:00
|
|
|
{% macro comment(comm) %}
|
|
|
|
<div class="comment" id="comment-{{ comm.id }}">
|
2018-07-26 16:37:13 +00:00
|
|
|
<a class="author" href="/@/{{ comm.author.fqn }}/">
|
2018-09-03 14:18:54 +00:00
|
|
|
<img class="avatar small padded" src="{{ comm.author.avatar }}" alt="{{ comm.author.name }}">
|
2018-07-26 14:36:19 +00:00
|
|
|
<span class="display-name">{{ comm.author.name }}</span>
|
2018-09-03 14:18:54 +00:00
|
|
|
<small>@{{ comm.author.fqn }}</small>
|
2018-07-25 16:18:41 +00:00
|
|
|
</a>
|
|
|
|
<div class="text">{{ comm.content | safe }}</div>
|
|
|
|
<a class="button" href="?responding_to={{ comm.id }}">{{ "Respond" | _ }}</a>
|
|
|
|
{% for res in comm.responses %}
|
|
|
|
{{ self::comment(comm=res) }}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endmacro %}
|