From 9839a49f36ee0b637b08b76e8ed5560409c9db3b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 23 Nov 2014 00:29:11 -0500 Subject: Simplify theme. --- themes/lv2/templates/article.html | 104 ++++---------------------------------- 1 file changed, 10 insertions(+), 94 deletions(-) (limited to 'themes/lv2/templates/article.html') diff --git a/themes/lv2/templates/article.html b/themes/lv2/templates/article.html index fcfab20..6a10c55 100644 --- a/themes/lv2/templates/article.html +++ b/themes/lv2/templates/article.html @@ -1,96 +1,12 @@ {% extends "base.html" %} -{% block title %}{{ article.title|striptags }} - {{ SITENAME }}{% endblock %} -{% block html_lang %}{{ article.lang }}{% endblock %} -{% block meta %} - {% if article.author %} - - {% else %} - - {% endif %} - {% if article.tags %} - - {% endif %} - {% if article.summary %} - - {% endif %} -{% endblock %} -{% block opengraph %} - {% if OPEN_GRAPH_FB_APP_ID %} - - - - - - - - {% if article.category %} - - {% endif %} - {% for tag in article.tags %} - - {% endfor %} - {% if article.author %} - - {% elif AUTHOR %} - - {% endif %} - {% if article.og_image %} - - {% elif OPEN_GRAPH_IMAGE %} - - {% endif %} - {% endif %} -{% endblock %} - -{% block canonical_rel %} - -{% endblock %} - -{% block breadcrumbs %} - {% if DISPLAY_BREADCRUMBS %} - {% if DISPLAY_CATEGORY_IN_BREADCRUMBS %} - - {% else %} - - {% endif %} - {% endif %} -{% endblock %} - -{% block content %} -
-
- -
-
-
- {% include "includes/article_info.html" %} -
-
- {{ article.content }} -
- - {% include 'includes/related-posts.html' %} - {% include 'includes/series.html' %} - {% include 'includes/addthis.html' %} - {% include 'includes/comments.html' %} -
-
- +{% block title %}{{ super() }} : {{ article.title }}{% endblock %} +{% block content %} +
+

{{ article.title }}

+ {{ SITENAME }} {% if SITESUBTITLE %} {{ SITESUBTITLE }}{% endif %} + {% if not HIDE_DATE %}{% endif %} +
+
+ {{ article.content }} +
{% endblock %} -- cgit v1.2.1