Fix the inconsistent use of blogpages

`page.get_children` was changed earlier to `blogpages` in order to show the blog posts ordered and hide the unpublished ones
This commit is contained in:
Mihail Russu 2016-12-13 11:45:23 +02:00 committed by Matt Westcott
parent f194130e47
commit e1aeb9ea4b
2 changed files with 2 additions and 1 deletions

View file

@ -192,6 +192,7 @@ Contributors
* PyMan Claudio Marinozzi
* Jeffrey Chau
* Craig Loftus
* Mihail Russu
Translators
===========

View file

@ -532,7 +532,7 @@ This method is now available from our templates. Update ``blog_index_page.html``
...
{% for post in page.get_children %}
{% for post in blogpages %}
{% with post=post.specific %}
<h2><a href="{% pageurl post %}">{{ post.title }}</a></h2>