You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 line
642B

  1. {% extends "base.html" %}
  2. {% block title %}{{ article.title|striptags }}{% endblock %}
  3. {% block content %}
  4. <article>
  5. <header>
  6. <h3 class="article-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
  7. title="Permalink to {{ article.title|striptags }}">{{ article.title}}</a></h3>
  8. {% include 'twitter.html' %}
  9. </header>
  10. {% include 'article_infos.html' %}
  11. {{ article.content }}
  12. {% include 'article_infos_bottom.html' %}
  13. {% if DISQUS_SITENAME and SITEURL and article.status != "draft" %}
  14. <h4>Comments</h4>
  15. {% include 'disqus_script.html' %}
  16. {% endif %}
  17. </article>
  18. {% endblock %}