diff --git a/CHANGELOG.md b/CHANGELOG.md index cb7c063..21dd0aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v1.3.1 +## 05/14/2017 + +1. [](#bugfix) + * Pages now sort as was originally intended. + # v1.3.0 ## 05/14/2017 diff --git a/blueprints.yaml b/blueprints.yaml index ce78c45..a0f6b44 100644 --- a/blueprints.yaml +++ b/blueprints.yaml @@ -1,5 +1,5 @@ name: Knowledge Base -version: 1.3.0 +version: 1.3.1 description: A theme for a knowledge base or FAQ icon: database author: diff --git a/templates/partials/frontlist.html.twig b/templates/partials/frontlist.html.twig index e2daf10..10b36ab 100644 --- a/templates/partials/frontlist.html.twig +++ b/templates/partials/frontlist.html.twig @@ -1,4 +1,4 @@ -{% set articles = taxonomy.findTaxonomy({'category': category}) %} +{% set articles = taxonomy.findTaxonomy({'category': category}).order('title') %}

{{ cat|e }} ({{ articles|length }})

{% include 'partials/topiclist.html.twig' with {'articles': articles, 'maxcount': maxcount} %}