Added tuxlite theme, which is inspired by the original bootstrap theme.

Built using twitter bootstrap v2.0, with responsive layout.
This commit is contained in:
Matts
2012-01-25 21:24:32 -05:00
parent 77eff4701a
commit b543f5d157
36 changed files with 982 additions and 0 deletions

View File

@@ -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 %}