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/page.html | 64 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 themes/lv2/templates/page.html (limited to 'themes/lv2/templates/page.html') diff --git a/themes/lv2/templates/page.html b/themes/lv2/templates/page.html new file mode 100644 index 0000000..f8757fa --- /dev/null +++ b/themes/lv2/templates/page.html @@ -0,0 +1,64 @@ +{% extends "base.html" %} +{% block title %}{{ page.title }} - {{ SITENAME }}{% endblock %} +{% block html_lang %}{{ page.lang }}{% endblock %} +{% block meta %} + {% if page.author %} + + {% else %} + + {% endif %} + {% if page.summary %} + + {% endif %} +{% endblock %} +{% block opengraph %} + {% if OPEN_GRAPH_FB_APP_ID %} + + {% endif %} + + + + + + {% if page.og_image %} + + {% elif OPEN_GRAPH_IMAGE %} + + {% endif %} +{% endblock %} + +{% block canonical_rel %} + +{% endblock %} + +{% block breadcrumbs %} + {% if DISPLAY_BREADCRUMBS %} + + {% endif %} +{% endblock %} + +{% block content %} +
+

{{ page.title }}

+ {% import 'includes/translations.html' as translations with context %} + {{ translations.translations_for(page) }} + {% if PDF_PROCESSOR %} + + get the pdf + + {% endif %} +
+ {{ page.content }} + {% if page.comments == 'enabled' %} + {% include 'includes/comments.html' %} + {% endif %} +
+
+{% endblock %} -- cgit v1.2.1