diff options
Diffstat (limited to 'theme/templates/index.html')
| -rw-r--r-- | theme/templates/index.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/theme/templates/index.html b/theme/templates/index.html new file mode 100644 index 0000000..47bf7be --- /dev/null +++ b/theme/templates/index.html @@ -0,0 +1,16 @@ +{% extends "base.html" %} +{% block content %} +<section id="content"> +<h2>Blog posts</h2> + +<ul id="post-list"> +{% for article in articles_page.object_list %} + <li> + <span class="post-date"><abbr title="{{ article.date.isoformat() }}">{{ article.locale_date }}</abbr></span> + <a class="post-title" href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a> + </li> +{% endfor %} +</ul> +{% include 'pagination.html' %} +</section> +{% endblock content %} |
