poobrains/themes/default/news.jinja

16 lines
430 B
Plaintext
Raw Permalink Normal View History

{% extends "commentable.jinja" %}
2017-05-09 15:37:40 +00:00
{% block header %}
{% if mode == 'teaser' %}
2017-08-06 02:47:30 +00:00
<h2><a href="{{ content.url('full', quiet=True) or content.url('edit', quiet=True) }}" title="{{ content.title }}">{{ content.title }}</a></h2>
2017-05-09 15:37:40 +00:00
{% endif %}
{% endblock %}
{% block content %}
{% if mode == 'full' %}
{{ content.text.render() }}
{% else %}
<pre class="markdown">{{ content.text|truncate }}</pre>
{% endif %}
{% endblock %}