blob: 090bbab3f52a0b6b3c0c7caf5dc2fd66fd7c13ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends "base.html" %}
{% block title %}
{{ article.title|striptags }}
{% endblock %}
{% block content %}
<div id="content">
<h3><a href="{{ SITEURL }}/{{ article.url }}"
title="Permalink to {{ article.title|striptags }}">{{ article.title}}</a></h3>
{#fuck twitter{% include 'twitter.html' %}#}
{% include 'article_infos.html' %}
{{ article.content }}
{% include 'article_infos_bottom.html' %}
{% if DISQUS_SITENAME and SITEURL and article.status != "draft" %}
<h4>Comments</h4>
{% include 'disqus_script.html' %}
{% endif %}
</div>
{% endblock %}
|