diff options
Diffstat (limited to 'nikola/data/themes/base-jinja/templates/story.tmpl')
| -rw-r--r-- | nikola/data/themes/base-jinja/templates/story.tmpl | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/nikola/data/themes/base-jinja/templates/story.tmpl b/nikola/data/themes/base-jinja/templates/story.tmpl index 99caaee..11973f1 100644 --- a/nikola/data/themes/base-jinja/templates/story.tmpl +++ b/nikola/data/themes/base-jinja/templates/story.tmpl @@ -4,27 +4,13 @@ {% import 'comments_helper.tmpl' as comments with context %} {% extends 'post.tmpl' %} -{% block extra_head %} - {{ super() }} - {% if post.meta('keywords') %} - <meta name="keywords" content="{{ post.meta('keywords')|e }}"> - {% endif %} - <meta name="author" content="{{ post.author() }}"> - {{ helper.open_graph_metadata(post) }} - {{ helper.twitter_card_information(post) }} - {{ helper.meta_translations(post) }} - {% if post.description() %} - <meta name="description" itemprop="description" content="{{ post.description() }}"> - {% endif %} -{% endblock %} - {% block content %} <article class="storypage" itemscope="itemscope" itemtype="http://schema.org/Article"> <header> {{ pheader.html_title() }} {{ pheader.html_translations(post) }} </header> - <div itemprop="articleBody text"> + <div class="e-content entry-content" itemprop="articleBody text"> {{ post.text() }} </div> {% if site_has_comments and enable_comments and not post.meta('nocomments') %} @@ -33,5 +19,6 @@ {{ comments.comment_form(post.permalink(absolute=True), post.title(), post.base_path) }} </section> {% endif %} + {{ helper.mathjax_script(post) }} </article> {% endblock %} |
