diff options
author | skami <skami@skami-laptop.dyndns.org> | 2011-02-09 14:15:30 +0100 |
---|---|---|
committer | skami <skami@skami-laptop.dyndns.org> | 2011-02-09 14:15:30 +0100 |
commit | 16c52c7b84ece3d48fa62022867072b11ad473db (patch) | |
tree | dc0b50ee06d80c1b76146f37944a61187f901298 /notmyidea-cms/templates/article.html | |
parent | 869840185624149e701685ef8021a6d3d46fff3b (diff) | |
download | pelican-themes-16c52c7b84ece3d48fa62022867072b11ad473db.tar.gz |
Adding «notmyidea-cms», a modified version of «notmyidea» for complete
websites...
Diffstat (limited to 'notmyidea-cms/templates/article.html')
-rw-r--r-- | notmyidea-cms/templates/article.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/notmyidea-cms/templates/article.html b/notmyidea-cms/templates/article.html new file mode 100644 index 0000000..8b5e5ba --- /dev/null +++ b/notmyidea-cms/templates/article.html @@ -0,0 +1,41 @@ +{% 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 }}">{{ article.title + }}</a></h1> {% include 'twitter.html' %} </header> + <div class="entry-content"> + <footer class="post-info"> + <abbr class="published" title="{{ article.date.isoformat() }}"> + {{ article.date.strftime('%a %d %B %Y') }} + </abbr> + {% if article.author %} + <address class="vcard author"> + By <a class="url fn" href="#">{{ article.author }}</a> + </address> + {% endif %} + <p>In <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>. + {% include 'taglist.html' %} + </footer><!-- /.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 %} |