Skip to content
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.

Commit

Permalink
Pages now sort as intended
Browse files Browse the repository at this point in the history
  • Loading branch information
Perlkonig committed May 14, 2017
1 parent b21ae88 commit a22410d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion blueprints.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion templates/partials/frontlist.html.twig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set articles = taxonomy.findTaxonomy({'category': category}) %}
{% set articles = taxonomy.findTaxonomy({'category': category}).order('title') %}
<section class="topiclist">
<h2><a href="{{ base_url }}/taxonomy?name=category&amp;val={{ cat|url_encode }}">{{ cat|e }}</a> <span class="count">({{ articles|length }})</span></h2>
{% include 'partials/topiclist.html.twig' with {'articles': articles, 'maxcount': maxcount} %}
Expand Down

0 comments on commit a22410d

Please sign in to comment.