diff --git a/themes/bootstrap3/templates/article.html b/themes/bootstrap3/templates/article.html new file mode 100644 index 0000000000000000000000000000000000000000..a6277d9f93b860366f219b0fc240271ce5be8cdc --- /dev/null +++ b/themes/bootstrap3/templates/article.html @@ -0,0 +1,113 @@ +{% 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 USE_OPEN_GRAPH %} + {% if OPEN_GRAPH_FB_APP_ID %} + + {% endif %} + + + + + + + {% 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/shariff.html' %} + {% include 'includes/comments.html' %} + {% include 'includes/show_source.html' %} +
+
+ +{% endblock %} + +{% block scripts %} +{% if ADDTHIS_PROFILE %} + {% if ADDTHIS_DATA_TRACK_ADDRESSBAR|default(true) %} + + {% endif %} + +{% endif %} +{% if SHARIFF|default(false) %} + + +{% endif %} +{% endblock %}