1
0
réplica de https://github.com/arsenetar/pelican-red.git sincronizado 2026-03-13 07:21: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
Este cometimento está contido em:
2013-07-29 16:09:35 -04:00
ascendente c6dbafd192
cometimento b7efae362c
18 ficheiros modificados com 274 adições e 146 eliminações

Ver ficheiro

@@ -1,12 +1,4 @@
{% extends 'base.html' %}
{% block title %}{{ super() }} - {{ category.name|title }}{% endblock %}
{% block content_title %}{{ category.name|title }}{% endblock %}
{% block content %}
{% for article in articles %}
<article>
<header><h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title|title }}</a></h1></header>
{{ article.summary }}
<footer>{{ article.author }}</footer>
</article>
{% endfor %}
{% endblock %}
{% block title %}{{ super() }} - {{ category }}{% endblock %}
{% block content_title %}<a href="{{ SITEURL }}/{{ category.url }}" rel="bookmark">{{ category }}</a>{% endblock %}