aboutsummaryrefslogtreecommitdiffstats
path: root/syte/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'syte/templates/index.html')
-rw-r--r--syte/templates/index.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/syte/templates/index.html b/syte/templates/index.html
new file mode 100644
index 0000000..365fa72
--- /dev/null
+++ b/syte/templates/index.html
@@ -0,0 +1,18 @@
+{% extends 'base.html' %}
+{% block main_section %}
+<section class="main-section blog-section" id="blog-posts">
+ {% for article in articles_page.object_list %}
+ <h3 class="date">{{article.locale_date}}</h3>
+ <article>
+ <hgroup>
+ <h2><a href="{{article.url}}" title="Permalink to {{article.title}}">{{article.title}}</a></h2>
+
+ </hgroup>
+ {{article.summary}}
+ </article>
+{% endfor %}
+
+{% include "pagination.html" %}
+
+</section>
+{% endblock %}