2017-03-26 13:55:56 +00:00
|
|
|
{% extends "commentable.jinja" %}
|
2015-06-09 20:28:25 +00:00
|
|
|
|
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 %}
|
2017-03-26 13:55:56 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2017-08-04 08:52:50 +00:00
|
|
|
{% if mode == 'full' %}
|
|
|
|
{{ content.text.render() }}
|
|
|
|
{% else %}
|
|
|
|
<pre class="markdown">{{ content.text|truncate }}</pre>
|
|
|
|
{% endif %}
|
2017-03-26 13:55:56 +00:00
|
|
|
{% endblock %}
|