diff options
author | David Runge <david.runge@frqrec.com> | 2015-01-26 20:06:20 +0100 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2015-01-26 20:06:20 +0100 |
commit | 8d144fb0274113b6fef6f94ad85091f4efbd0e31 (patch) | |
tree | 8243b6a087c61adbda0a9f40a805e4e4d08ca148 /sleepmap-theme/templates/article.html | |
download | sleepmap-8d144fb0274113b6fef6f94ad85091f4efbd0e31.tar.gz sleepmap-8d144fb0274113b6fef6f94ad85091f4efbd0e31.tar.bz2 sleepmap-8d144fb0274113b6fef6f94ad85091f4efbd0e31.tar.xz sleepmap-8d144fb0274113b6fef6f94ad85091f4efbd0e31.zip |
sleepmap-theme: Adding first clone (notmyidea-cms) with modifications
Diffstat (limited to 'sleepmap-theme/templates/article.html')
-rw-r--r-- | sleepmap-theme/templates/article.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sleepmap-theme/templates/article.html b/sleepmap-theme/templates/article.html new file mode 100644 index 0000000..1d869c0 --- /dev/null +++ b/sleepmap-theme/templates/article.html @@ -0,0 +1,30 @@ +{% extends "base.html" %} +{% block title %}{{ article.title|striptags }}{% endblock %} +{% block content %} +<section id="content" class="body"> +<article> + <header> <h1 class="entry-title"><a href="{{ article.url }}" + rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title + }}</a></h1> {% include 'twitter.html' %} </header> + <div class="entry-content"> + {% include 'article_infos.html' %}<!-- /.post-info --> + {{ article.content }} + </div><!-- /.entry-content --> + {% if DISQUS_SITENAME %} + <div class="comments"> + <h2>Comments !</h2> + <div id="disqus_thread"></div> + <script type="text/javascript"> + var disqus_identifier = "{{ article.url }}"; + (function() { + var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; + dsq.src = 'http://{{ DISQUS_SITENAME }}.disqus.com/embed.js'; + (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); + })(); + </script> + </div> + {% endif %} + +</article> +</section> +{% endblock %} |