aboutsummaryrefslogtreecommitdiffstats
path: root/brownstone/templates/index.html
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2011-02-01 21:50:43 +0000
committerAlexis Metaireau <alexis@notmyidea.org>2011-02-01 21:50:43 +0000
commit50991bc1b6a994223f2a715a42faad34050c507c (patch)
treef6a8ffdfe2cf5a817d3b0fc5e5cb625c42c8a992 /brownstone/templates/index.html
parent92808823a34cabb29b85ae2550e83ef39fc132a6 (diff)
downloadpelican-themes-50991bc1b6a994223f2a715a42faad34050c507c.tar.gz
Add the brownstone theme, removed from pelican upstream.
Diffstat (limited to 'brownstone/templates/index.html')
-rw-r--r--brownstone/templates/index.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/brownstone/templates/index.html b/brownstone/templates/index.html
new file mode 100644
index 0000000..3ec1781
--- /dev/null
+++ b/brownstone/templates/index.html
@@ -0,0 +1,43 @@
+{% extends "base.html" %}
+{% block content_title %}{% endblock %}
+{% block content %}
+ {% if articles %}
+ {% for article in articles %}
+ {% if loop.index == 1 %}
+ <div id="content">
+ <div class="post">
+ <h2 class="title"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
+ <p class="meta"><span class="date">Le {{ article.date.locale_date }} </span><span class="posted">Par <a href="#">{{ article.author }}</a></span><span>&nbsp; | Catégorie : <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a></span></p>
+ <p class="meta">Tags : {% for tag in article.tags %}
+<span><a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</a> / </span>
+{% endfor %}</p>
+ <div style="clear: both;">&nbsp;</div>
+ <div class="entry">
+ {{ article.content }}
+ {% include 'twitter.html' %}
+ </div>
+ </div>
+ {% if loop.length > 1 %}
+ <div class="post">
+ <h2 class="title">Autres articles</h2>
+ </div>
+ {% endif %}
+ {% else %}
+ <div class="post summary">
+ <h2 class="title"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
+ <p class="meta"><span class="date">Le {{ article.locale_date }}</span><span class="posted">Par <a href="#">{{ article.author }}</a></span></p>
+ <div style="clear: both;">&nbsp;</div>
+ <div class="entry">
+ {{ article.summary }}
+ <a class="readmore" href="{{ SITEURL }}/{{ article.url }}">Lire la suite …</a>
+ </div>
+ </div>
+ {% endif %}
+ {% endfor %}
+ {% else %}
+ <div id="content">
+ </div>
+ {% endif %}
+ <div style="clear: both;">&nbsp;</div>
+ </div>
+ {% endblock content %}