pelican-subtle-giggi: update release v1
diff --git a/theme/templates/index.html b/theme/templates/index.html
new file mode 100644
index 0000000..099ed0f
--- /dev/null
+++ b/theme/templates/index.html
@@ -0,0 +1,25 @@
+{% extends "base.html" %}
+
+{% block title %}Blog | {{ SITENAME }}{% endblock %}
+
+{% block content %}
+{% for article in articles_page.object_list|sort(attribute='no') %}
+<article>
+ <div class="article_title">
+ <h3><a href="{{ BLOGURL }}/{{ article.url }}">{{ article.title }}</a></h3>
+ {{ article.summary }}
+ </div>
+</article>
+{% if not loop.last %}
+<hr />
+{% endif %}
+{% endfor %}
+{% endblock %}
+
+{% if BLOCK_FOOTER %}
+{% block footer %}
+<footer>
+{% include "modules/pagination.html" %}
+</footer>
+{% endblock %}
+{% endif %}