schedule Nixon quotepost, "Interlude XX", and "The Feeling Is Mutual"
[Ultimately_Untrue_Thought.git] / theme / templates / index.html
index 233c8a8..c28077e 100644 (file)
@@ -1,15 +1,22 @@
 {% extends "base.html" %}
 {% block content_title %}{% endblock %}
 
+{% block scripts %}
+  <script src="/theme/js/comment_counts.js"></script>
+{% endblock %}
+
 {% block content %}
 
-{% for article in articles %}
+{% for article in articles_page.object_list %}
   <article>
     <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
     {% include 'metadata.inc.html' %}
     {{ article.content }}
   </article>
+  <span class="comments-link-container" data-path="/{{ article.url }}" id="{{ article.slug }}-comments-link-container"></span>
   <hr />
 {% endfor %}
 
+{% include 'pagination.inc.html' %}
+
 {% endblock content %}