aboutsummaryrefslogtreecommitdiffstats
path: root/syte/templates/index.html
diff options
context:
space:
mode:
authorSamrat Man Singh <samratmansingh@gmail.com>2012-07-07 08:31:08 +0545
committerSamrat Man Singh <samratmansingh@gmail.com>2012-07-07 08:31:08 +0545
commit2ce26b4ed17e153d9834e6dd21ec0da92d71139e (patch)
tree9b59308831e99ed534f28aac51b5b236ac54ce87 /syte/templates/index.html
parent705357519b7345422a003d8970d1f396579d91b2 (diff)
downloadpelican-themes-2ce26b4ed17e153d9834e6dd21ec0da92d71139e.tar.gz
Move syte-pelican to syte
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..9f42064
--- /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.content}}
+ </article>
+{% endfor %}
+
+{% include "pagination.html" %}
+
+</section>
+{% endblock %}