aboutsummaryrefslogtreecommitdiffstats
path: root/waterspill-en/templates/index.html
diff options
context:
space:
mode:
authorThe Dod <unclezzzen@gmail.com>2012-11-05 12:51:12 +0700
committerThe Dod <unclezzzen@gmail.com>2012-11-05 12:51:12 +0700
commitbd942f2d4f6df52e2aa4ff44d4050da0f260d76e (patch)
tree87722bedef5215b19de69abb7a85441be36ca227 /waterspill-en/templates/index.html
parent662052faa4749d3fec2ff1149e853f71d5c2b434 (diff)
downloadpelican-themes-bd942f2d4f6df52e2aa4ff44d4050da0f260d76e.zip
pelican-themes-bd942f2d4f6df52e2aa4ff44d4050da0f260d76e.tar.gz
pelican-themes-bd942f2d4f6df52e2aa4ff44d4050da0f260d76e.tar.bz2
initial commit
Diffstat (limited to 'waterspill-en/templates/index.html')
-rw-r--r--waterspill-en/templates/index.html46
1 files changed, 46 insertions, 0 deletions
diff --git a/waterspill-en/templates/index.html b/waterspill-en/templates/index.html
new file mode 100644
index 0000000..fecab05
--- /dev/null
+++ b/waterspill-en/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>{{ article.locale_date }}</h3>
+
+ {{ article.content }}
+
+
+ <h3 class="blogMeta">By <a href="#">{{ article.author }}</a>{% if not SUPPRESS_ITEM_CATEGORIES %}, Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>{% endif %}</h3>
+ {% if article.tags %}<h3 class="blogMeta">Tags: {% for tag in article.tags %}
+<span><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> / </span>
+{% endfor %}</h3>{% endif %}
+
+ </div><!-- end #blogItem -->
+ {% if loop.length > 1 %}
+ <div class="blogItem">
+ <h2>Other articles</h2>
+ </div>
+{% endif %}
+{% else %}
+ <div class="blogItem">
+
+ <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
+ <h3>{{ article.locale_date }}</h3>
+
+ {{ article.summary }}
+<h3 class="blogMeta">By <a href="#">{{ article.author }}</a>{% if not SUPPRESS_ITEM_CATEGORIES %}, Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>{% endif %}</h3>
+ <a href="{{ SITEURL }}/{{ article.url }}">Cuntinue reading …</a>
+
+
+
+
+ </div><!-- end #blogItem -->
+ {% endif %}
+{% endfor %}
+{% else %}
+
+{% endif %}
+{% endblock content %}