diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2012-01-26 07:54:12 -0800 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2012-01-26 07:54:12 -0800 |
commit | 5ca71a7c7793832e5becae5717b2f9ac4744bded (patch) | |
tree | 1cb09bd2e2b7217423a36240f6fcba5d6890fe5c /tuxlite_tbs/templates/article.html | |
parent | 77eff4701ac0bd7a11728531da319bb99d1dbd4a (diff) | |
parent | 24aaa07fa699407f56357f867be225a58eaf1bdd (diff) | |
download | pelican-themes-5ca71a7c7793832e5becae5717b2f9ac4744bded.tar.gz |
Merge pull request #11 from Mins/master
Added tuxlite theme, which is inspired by the original bootstrap theme.
Diffstat (limited to 'tuxlite_tbs/templates/article.html')
-rw-r--r-- | tuxlite_tbs/templates/article.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tuxlite_tbs/templates/article.html b/tuxlite_tbs/templates/article.html new file mode 100644 index 0000000..23e3c86 --- /dev/null +++ b/tuxlite_tbs/templates/article.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} +{% block content %} + <div class='article'> + <div class="content-title"> + <h2>{{ article.title }}</h2> + {% include "metadata.html" %} + </div> + + <div>{{ article.content }}</div> + + <hr> + + <h2>Comments</h2> + {% include "twitter.html" %} + {% if DISQUS_SITENAME %}<div id="disqus_thread"></div>{% endif %} + </div> +{% endblock %} |