blob: 5acc50f8dc8e4b07aaf5ff0676aa9cc5b06ac30b (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block opengraph %}
<meta property="og:title" content="{{ term.name }}">
<meta property="og:type" content="profile">
<meta property="og:url" content="{{ term.permalink | safe }}">
{% endblock opengraph %}
{% block content %}
<h1 class="author">{{ trans(key="posts_by", lang=lang) }} {{ term.name }}</h1>
{% for post in term.pages %}
<article class="post">
{% include "posts/header.html" %}
<section class="post-summary">
{% if post.summary %}
{{ post.summary | safe }}
{% else %}
{{ post.content | safe }}
{% endif %}
</section>
<footer>
{% if post.summary %}
<a href="{{ post.permalink }}">
{{ trans(key="moreprompt", lang=post.lang) }}
</a>
{% endif %}
</footer>
</article>
{% endfor %}
{% endblock content %}
|