aboutsummaryrefslogtreecommitdiffstats
path: root/sneakyidea/templates/article.html
blob: 6b20c6ebead6b04aeb8b5d3cb328cd7e22c101ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{% extends "base.html" %}
{% block title %}{{ article.title }}{% 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' %} {% include 
        'google_plusone.html' %} </header>
        <div class="entry-content">
        {% include 'article_infos.html' %}
        {{ 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 %}