From f08e56433fb2c92a9172787adcb33edee347bc7b Mon Sep 17 00:00:00 2001 From: Rafael Laboissière Date: Sun, 11 Dec 2022 09:55:21 +0100 Subject: Update for new upstream version (revision 3891) --- templates/article.html | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 templates/article.html (limited to 'templates/article.html') diff --git a/templates/article.html b/templates/article.html new file mode 100644 index 0000000..6abcb09 --- /dev/null +++ b/templates/article.html @@ -0,0 +1,53 @@ +{% extends "base.html" %} +{% block html_lang %}{{ article.lang }}{% endblock %} +{% block head -%} + {{ super() -}} + {% if article.summary %} + + {% endif %} +{% endblock %} + +{% block title %}{{ article.title|striptags }}{% endblock %} + +{% block extra_head %} +{% import 'translations.html' as translations with context %} +{% if translations.entry_hreflang(article) %} + {{ translations.entry_hreflang(article) }} +{% endif %} +{% endblock %} + +{% block content %} +
+
+
+

+ {{ article.title }}

+ {% include 'twitter.html' %} +
+ +
+ {% include 'article_infos.html' %} + {{ article.content }} +
+ {% if DISQUS_SITENAME and SITEURL and article.status != "draft" %} +
+

Comments !

+
+ + +
+ {% endif %} + +
+
+{% endblock %} -- cgit v1.2.3