aboutsummaryrefslogtreecommitdiffstats
path: root/martyalchin/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'martyalchin/templates/index.html')
-rw-r--r--martyalchin/templates/index.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/martyalchin/templates/index.html b/martyalchin/templates/index.html
new file mode 100644
index 0000000..6286ef6
--- /dev/null
+++ b/martyalchin/templates/index.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% block content %}
+ <h1><a href="{{ SITEURL }}">{{ SITENAME }}</a></h1>
+ {% if SITESUBTITLE %} <div class="info">{{ SITESUBTITLE }}</div> {% endif %}
+ {% for article in articles %}
+ <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
+ <p class="published">{{ article.locale_date }}</p>
+ {{ article.summary }}
+ {% endfor %}
+{% endblock %}