diff options
Diffstat (limited to 'martyalchin/templates/index.html')
-rw-r--r-- | martyalchin/templates/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/martyalchin/templates/index.html b/martyalchin/templates/index.html index 6286ef6..6e2e789 100644 --- a/martyalchin/templates/index.html +++ b/martyalchin/templates/index.html @@ -1,9 +1,9 @@ {% extends "base.html" %} {% block content %} - <h1><a href="{{ SITEURL }}">{{ SITENAME }}</a></h1> + <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> + {% for article in articles_page.object_list %} + <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2> <p class="published">{{ article.locale_date }}</p> {{ article.summary }} {% endfor %} |