diff options
author | Matts <s@tuxlite.com> | 2012-01-25 21:24:32 -0500 |
---|---|---|
committer | Matts <s@tuxlite.com> | 2012-01-25 21:24:32 -0500 |
commit | b543f5d15705f02f7055c2abc1f424b3fb47d71a (patch) | |
tree | b396899920df7dde3597ae53dfce099a2744f7af /tuxlite_tbs/templates/article.html | |
parent | 77eff4701ac0bd7a11728531da319bb99d1dbd4a (diff) | |
download | pelican-themes-b543f5d15705f02f7055c2abc1f424b3fb47d71a.zip pelican-themes-b543f5d15705f02f7055c2abc1f424b3fb47d71a.tar.gz pelican-themes-b543f5d15705f02f7055c2abc1f424b3fb47d71a.tar.bz2 |
Added tuxlite theme, which is inspired by the original bootstrap theme.
Built using twitter bootstrap v2.0, with responsive layout.
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 %} |