blog/theme/bootstrapdark/templates/article.html
kleph e10a67428d Initial import
- first content
- modded theme, based on wraithani'thme, which is based on bootstrap
2013-07-05 00:07:25 +02:00

16 lines
581 B
HTML

{% extends "base.html" %}
{% block indextitle %}{% endblock %}
{% block content %}
<div class='article'>
<div class="page-header"><h1>{{ article.title }}</h1></div>
<div class="well small">{% include "metadata.html" %}</div>
<div>{{ article.content }}</div>
<div>
<h2>Comments</h2>
{% include "twitter.html" %}
{% if DISQUS_SITENAME %}<div id="disqus_thread"></div>{% endif %}
{% if FACEBOOK_APPID %}<div class="fb-comments" data-href="{{ FQ_SITEURL }}/{{ article.url }}" data-num-posts="10" data-width="760"></div>{% endif %}
<div>
</div>
{% endblock %}