diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2011-02-01 19:42:53 +0000 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-02-01 19:42:53 +0000 |
commit | 92808823a34cabb29b85ae2550e83ef39fc132a6 (patch) | |
tree | b8f3b21125e8279e0b279554ba4d5e0e0fc0a3c2 /waterspill/templates/index.html | |
parent | 9896db2d95ec58883d1adc41a2a29408260a4ed0 (diff) | |
download | pelican-themes-92808823a34cabb29b85ae2550e83ef39fc132a6.tar.gz |
Add the waterspill theme, thanks to Freeculture.
Diffstat (limited to 'waterspill/templates/index.html')
-rw-r--r-- | waterspill/templates/index.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/waterspill/templates/index.html b/waterspill/templates/index.html new file mode 100644 index 0000000..ae381bc --- /dev/null +++ b/waterspill/templates/index.html @@ -0,0 +1,46 @@ +{% extends "base.html" %} +{% block content_title %}{% endblock %} +{% block content %} + {% if articles %} + {% for article in articles %} + {% if loop.index == 1 %} + + <div class="blogItem"> + + <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2> + <h3>Le {{ article.date.strftime('%a %d %B %Y') }}</h3> + + {{ article.content }} + + + <h3 class="blogMeta">Par <a href="#">{{ article.author }}</a>, Catégorie : <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a></h3> + <h3 class="blogMeta">Tags : {% for tag in article.tags %} +<span><a href="{{ SITEURL }}/tag/{{ tag }}.html">{{ tag }}</a> / </span> +{% endfor %}</h3> + + </div><!-- end #blogItem --> + {% if loop.length > 1 %} + <div class="blogItem"> + <h2>Autres articles</h2> + </div> +{% endif %} +{% else %} + <div class="blogItem"> + + <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2> + <h3>Le {{ article.date.strftime('%a %d %B %Y') }}</h3> + + {{ article.summary }} +<h3 class="blogMeta">Par <a href="#">{{ article.author }}</a>, Catégorie : <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a></h3> + <a href="{{ SITEURL }}/{{ article.url }}">Lire la suite …</a> + + + + + </div><!-- end #blogItem --> + {% endif %} +{% endfor %} +{% else %} + +{% endif %} +{% endblock content %} |