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/base.html | 192 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 192 insertions(+) create mode 100644 themes/lv2/templates/base.html (limited to 'themes/lv2/templates/base.html') diff --git a/themes/lv2/templates/base.html b/themes/lv2/templates/base.html new file mode 100644 index 0000000..ae04fb1 --- /dev/null +++ b/themes/lv2/templates/base.html @@ -0,0 +1,192 @@ + + + + {% block title %}{{ SITENAME }}{% endblock %} + + + + + + {% if 'liquid_tags.notebook' in PLUGINS %} + {% include 'includes/liquid_tags_nb_header.html' %} + {% endif %} + + {# Favicons are a touchy subject. For reasoning for the following code, see: http://stackoverflow.com/a/23851464/872397 #} + {% if FAVICON %} + + {% endif %} + {% if FAVICON_IE %} + + {% endif %} + {% if TOUCHICON %} + + {% endif %} + + {% block canonical_rel %}{% endblock %} + + {% block meta %} + + {% endblock %} + + + {% if article and article.latex %} + {{ article.latex }} + {% endif %} + {% if page and page.latex %} + {{ page.latex }} + {% endif %} + + + {# Open Graph tags #} + {% if USE_OPEN_GRAPH is not defined %} + {% set USE_OPEN_GRAPH = True %} + {% endif %} + {% if USE_OPEN_GRAPH %} + {% block opengraph %} + + {% if OPEN_GRAPH_FB_APP_ID %} + + {% endif %} + + + + + + {% if OPEN_GRAPH_IMAGE %} + + {% endif %} + {% endblock %} + {% endif %} + + {# Twitter Cards tags #} + {% include 'includes/twitter_cards.html' %} + + + {% if BOOTSTRAP_THEME %} + + {% else %} + + {% endif %} + + + + {% if DOCUTIL_CSS %} + + {% endif %} + {% if TYPOGRIFY %} + + {% endif %} + + {% if CUSTOM_CSS %} + + {% endif %} + + {% if FEED_ALL_ATOM %} + + {% endif %} + {% if FEED_ALL_RSS %} + + {% endif %} + + {% if tag and TAG_FEED_ATOM %} + + {% endif %} + + {% if category and CATEGORY_FEED_ATOM %} + + {% endif %} + + + + + + +
+
+ {% if not HIDE_SIDEBAR or SHOW_ABOUTME %} +
+ {% else %} +
+ {% endif %} + {% block breadcrumbs %} + {% endblock %} + + {% block content %} + {% endblock %} +
+ {% if ABOUT_ME %} +
+ {% include 'includes/aboutme.html' %} +
+ {% endif %} + {% if not HIDE_SIDEBAR %} + + {% endif %} +
+
+{% include 'includes/footer.html' %} + + + + + + + + + +{% include 'includes/github-js.html' %} +{% include 'includes/disqus_script.html' %} +{% include 'includes/ga.html' %} +{% include 'includes/piwik.html' %} + + -- cgit v1.2.1