소스 검색

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 %}