Переглянути джерело

Adds index template

It shows only articles' titles in a bulleted list, sorted in ascending alphabetical order.
It doesn't show article's summary, publication date and other stuff.
Talha Mansoor 11 роки тому
батько
коміт
7dc3e5fdda
1 змінених файлів з 9 додано та 0 видалено
  1. 9 0
      templates/index.html

+ 9 - 0
templates/index.html

@@ -0,0 +1,9 @@
+{% extends "!simple/index.html" %}
+
+{% block content %}
+<h2>All articles</h2>
+       {% for article in articles | sort(attribute='title') %}
+        <li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
+       {% endfor %}
+       {% include 'pagination.html' %}
+{% endblock content %}