summaryrefslogtreecommitdiffstats
path: root/theme/templates/index.html
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2013-01-21 12:10:58 +0100
committerThibaut Horel <thibaut.horel@gmail.com>2013-01-21 12:10:58 +0100
commit5c4e85fe93ec3a713cf173db34e422072254d1c7 (patch)
treee1b0cb4d442e429a485d64eb2df3596e7d1360ca /theme/templates/index.html
parentf62624ae5229ecc32fc57de8e6ae7aab051f9a4a (diff)
downloadblog-5c4e85fe93ec3a713cf173db34e422072254d1c7.tar.gz
Configuration update. Custom theme
Diffstat (limited to 'theme/templates/index.html')
-rw-r--r--theme/templates/index.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/theme/templates/index.html b/theme/templates/index.html
new file mode 100644
index 0000000..47bf7be
--- /dev/null
+++ b/theme/templates/index.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+{% block content %}
+<section id="content">
+<h2>Blog posts</h2>
+
+<ul id="post-list">
+{% for article in articles_page.object_list %}
+ <li>
+ <span class="post-date"><abbr title="{{ article.date.isoformat() }}">{{ article.locale_date }}</abbr></span>
+ <a class="post-title" href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a>
+ </li>
+{% endfor %}
+</ul>
+{% include 'pagination.html' %}
+</section>
+{% endblock content %}