check in
[Ultimately_Untrue_Thought.git] / theme / templates / index.html
1 {% extends "base.html" %}
2 {% block content_title %}{% endblock %}
3
4 {% block scripts %}
5   <script src="/theme/js/comment_counts.js"></script>
6 {% endblock %}
7
8 {% block content %}
9
10 {% for article in articles_page.object_list %}
11   <article>
12     <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
13     {% include 'metadata.inc.html' %}
14     {{ article.content }}
15   </article>
16   <span class="comments-link-container" data-path="/{{ article.url }}" id="{{ article.slug }}-comments-link-container"></span>
17   <hr />
18 {% endfor %}
19
20 {% include 'pagination.inc.html' %}
21
22 {% endblock content %}