diff options
Diffstat (limited to 'simple-bootstrap/templates/article.html')
-rwxr-xr-x | simple-bootstrap/templates/article.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/simple-bootstrap/templates/article.html b/simple-bootstrap/templates/article.html new file mode 100755 index 0000000..9eae108 --- /dev/null +++ b/simple-bootstrap/templates/article.html @@ -0,0 +1,46 @@ +{% extends "base.html" %} +{% block title %}{{ article.title }} - {{SITENAME}}{% endblock title %} +{% block content %} +<section id="content" class="article content"> + <header> + <h2 class="entry-title"> + <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" + title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2> + {% import 'translations.html' as translations with context %} + {{ translations.translations_for(article) }} + </header> + + + <div class="entry-content"> + {{ article.content }} + </div><!-- /.entry-content --> + <footer class="post-info text-muted"> + Posted on <abbr class="published" title="{{ article.date.isoformat() }}"> + {{ article.locale_date }} + </abbr> + {% if article.author %} + <address class="vcard author"> + by <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a> + </address> in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a> Tagged {% if article.tags %}{% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }} </a>{% endfor %}{% endif %} + {% endif %} + </footer><!-- /.post-info --> +</section> + {% if DISQUS_SITENAME %} + <div class="comment"> + <div id="disqus_thread"></div> <!-- comment app container --> + </div> + <!-- Comment BEGIN --> + <script type="text/javascript"> + var disqus_shortname = '{{ DISQUS_SITENAME }}'; // required: replace example with your forum shortname + + /* * * DON'T EDIT BELOW THIS LINE * * */ + (function() { + var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; + dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; + (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); + })(); + </script> + <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> + <!-- Comment END --> + {% endif %} +{% endblock %} |