initial import
diff --git a/templates/index.html b/templates/index.html
new file mode 100644
index 0000000..910170c
--- /dev/null
+++ b/templates/index.html
@@ -0,0 +1,18 @@
+{% extends "base.html" %}
+{% block content %}
+{% set custom_header = "Index" %}
+{% include "header.html" %}
+{% for article in articles_page.object_list %}
+<article>
+  <h1 id="title">
+      <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title }}">{{ article.title }}</a>
+  </h1>
+  <div id="article_content">
+    {{ article.summary }}
+  </div>
+</article>
+{% endfor %}
+<footer>
+  {% include "pagination.html" %}
+</footer>
+{% endblock %}