Blog entries -> Blog posts

This commit is contained in:
str4d
2013-01-09 00:32:32 +00:00
parent 78bba563fe
commit 2acc8bc433
11 changed files with 43 additions and 43 deletions

View File

@@ -1,6 +1,6 @@
<ul>
{% for entry in blog_entries -%}
<li>{{ entry[1] }} - <a href="{{ url_for('blog_entry', slug=entry[0]) }}">{{ entry[2] }}</a></li>
{% for post in blog_posts -%}
<li>{{ post[1] }} - <a href="{{ url_for('blog_post', slug=post[0]) }}">{{ post[2] }}</a></li>
{%- endfor %}
<li><a href="{{ url_for('blog_index', lang=g.lang) }}"><em>More blog entries&hellip;</em></a></li>
<li><a href="{{ url_for('blog_index', lang=g.lang) }}"><em>More blog posts&hellip;</em></a></li>
</ul>