From d38c4094a1aef8be93218adeefe66b20308d96e3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 21 Nov 2014 01:12:26 -0500 Subject: Initial website Markdown conversion. --- themes/lv2/templates/article.html | 96 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 themes/lv2/templates/article.html (limited to 'themes/lv2/templates/article.html') diff --git a/themes/lv2/templates/article.html b/themes/lv2/templates/article.html new file mode 100644 index 0000000..fcfab20 --- /dev/null +++ b/themes/lv2/templates/article.html @@ -0,0 +1,96 @@ +{% 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' %} +
+
+ +{% endblock %} -- cgit v1.2.1