diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-05-05 18:34:02 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-05-05 18:34:02 -0400 |
commit | fe7012879c287d80598a9b6e40929b61eefcd25c (patch) | |
tree | ffedaef0f41b71192e1728d15c4c40f2dc41f1c3 /theme/templates/list.html | |
parent | 8e209973ab76e5d3b5657088306d5cd16a4eaaee (diff) | |
download | bnewnet-fe7012879c287d80598a9b6e40929b61eefcd25c.tar.gz bnewnet-fe7012879c287d80598a9b6e40929b61eefcd25c.zip |
basic fixups to templates and stylesheet
Diffstat (limited to 'theme/templates/list.html')
-rw-r--r-- | theme/templates/list.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/theme/templates/list.html b/theme/templates/list.html new file mode 100644 index 0000000..4bd8198 --- /dev/null +++ b/theme/templates/list.html @@ -0,0 +1,28 @@ +{% extends "base.html" %} +{% block content %} +<section id="content"> +{% block content_title %} +<h2>All articles</h2> +{% endblock %} + +<ol id="post-list"> +{% for article in articles_page.object_list %} + <li><article class="hentry"> + <header> <h2 class="entry-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2> </header> + <footer class="post-info"> + <abbr class="published" title="{{ article.date.isoformat() }}"> {{ article.locale_date }} </abbr> + <address class="vcard author">By + {% for author in article.authors %} + <a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> + {% endfor %} + </address> + </footer><!-- /.post-info --> + <div class="entry-content"> {{ article.summary }} </div><!-- /.entry-content --> + </article></li> +{% endfor %} +</ol><!-- /#posts-list --> +{% if articles_page.has_other_pages() %} + {% include 'pagination.html' %} +{% endif %} +</section><!-- /#content --> +{% endblock content %} |