Files
pelican-themes/tuxlite_tbs/templates/index.html
Matts b543f5d157 Added tuxlite theme, which is inspired by the original bootstrap theme.
Built using twitter bootstrap v2.0, with responsive layout.
2012-01-25 21:24:32 -05:00

48 lines
1.3 KiB
HTML

{% extends "base.html" %}
{% block content_title %}{% endblock %}
{% block content %}
{% if articles %}
{% for article in articles_page.object_list %}
{# First item #}
{% if loop.first and not articles_page.has_previous() %}
<div class='article'>
<div class="content-title">
<a href="{{ SITEURL }}/{{ article.url }}"><h2>{{ article.title }}</h2></a>
{% include "metadata.html" %}
</div>
<div>{{ article.content }}</div>
</div>
{% if loop.length == 1 %}
{% include 'pagination.html' %}
{% endif %}
{% if loop.length > 1 %}
<hr />
<br />
<h2>Other Entries</h2>
{% endif %}
{# other items #}
{% else %}
<div class='article'>
<a href="{{ SITEURL }}/{{ article.url }}"><h3>{{ article.title }}</h3></a>
<div class= "well small"> {% include "metadata.html" %} </div>
<div class="summary">{{ article.summary }} <a class="btn primary xsmall" href="{{ SITEURL }}/{{ article.url }}">read more</a></div>
</div>
{% if loop.last and (articles_page.has_previous() or not articles_page.has_previous() and loop.length > 1) %}
{% include 'pagination.html' %}
{% endif %}
{% endif %} {# First item if #}
{% endfor %} {# For article #}
{% endif %} {# If articles #}
{% endblock content %}