mirror of
https://github.com/arsenetar/pelican-red.git
synced 2026-02-01 09:31:38 +00:00
Initial release version of templates
The templates in this commit are now in RC form. Everything but the article templates are ready. Changes include ( no limited to ): - Update stylesheet - Add method in app.js to handle images in documents - Create _author_item.html to display author information and vcard - Update _disqus.html to fit in with site style - Update _page_footer.html for translation support - Add _pagination.html for pagination support - Add _translations.html for translation listing support - Minor updates to archives.html, tags.html - Update base.html to have more flexibility - Update authors.html and author.html to display information - Update category.html and categories.html to use the _list_item.html - Update page translation support + misc - Update tag.html to use _list_item.html
This commit is contained in:
@@ -1,11 +1,16 @@
|
||||
{% extends 'base.html' %}
|
||||
{% block title %}{{ super() }} - Categories{% endblock %}
|
||||
{% block content_title %}<a href="{{ SITEURL }}/{{ page_name }}.html" rel="bookmark">Categories</a>{% endblock %}
|
||||
{% block content %}
|
||||
<h1>Categories</h1>
|
||||
<ul class='no-bullet'>
|
||||
<h2>Recent Articles by Category</h2>
|
||||
{% for cat, articles in categories %}
|
||||
<li><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat.name|title }}</a> -
|
||||
{{ articles|length }}{% if articles|length == 1 %} article {% else %} articles{% endif %}</li>
|
||||
<h3><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></h3>
|
||||
<ul class="item-list">
|
||||
{% for article in articles[0:3] %}
|
||||
{% include '_list_item.html' %}
|
||||
{% endfor %}
|
||||
<p><a href="{{ SITEURL }}/{{ cat.url }}">View all articles in {{ cat }}...</a></p>
|
||||
</ul>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user