poobrains-pdn/themes/default/article.jinja

16 lines
385 B
Plaintext
Raw Permalink Normal View History

2017-04-23 00:23:42 +00:00
{% extends "commentable.jinja" %}
{% block header %}
{% if mode != 'full' %}
<h2><a href="{{ content.url('full') }}">{{ content.title }}</a></h2>
2017-03-14 18:41:39 +00:00
{% endif %}
2017-04-23 00:23:42 +00:00
{% endblock %}
2017-03-14 18:41:39 +00:00
2017-04-23 00:23:42 +00:00
{% block content %}
{% if mode == 'full' %}
{{ content.text.render() }}
{% else %}
2017-05-24 13:51:21 +00:00
<pre class="markdown">{{ content.text|truncate }}</pre>
2017-04-23 00:23:42 +00:00
{% endif %}
{% endblock %}