blob: f80fceb4d55f4349eb8e3be5cc8c65f696dd416b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{% extends "base.html" %}
{% block title %}{{ article.title|striptags }}{% endblock %}
{% block content %}
<article>
<header>
<h3 class="article-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
title="Permalink to {{ article.title|striptags }}">{{ article.title}}</a></h3>
{% include 'twitter.html' %}
</header>
{% include 'article_infos.html' %}
{{ article.content }}
{% include 'article_infos_bottom.html' %}
{% if STATIC_COMMENTS %}
<section id="comments" class="body">
<h4>Comments!</h4>
{{ article.metadata.static_comments }}
</section>
{% endif %}
</article>
{% endblock %}
|