Merge branch 'release/1.1.0'

This commit is contained in:
Andy Miller 2015-08-25 11:23:34 -06:00
commit 01d8a1ba41
3 changed files with 22 additions and 3 deletions

View File

@ -1,3 +1,11 @@
# v1.1.0
## 08/25/2015
1. [](#improved)
* Added blueprints for Grav Admin plugin
1. [](#bugfix)
* Taxonomy count fix
# v1.0.4
## 05/09/2015

View File

@ -1,5 +1,5 @@
name: Deliver
version: 1.0.4
version: 1.1.0
description: "Deliver theme is a port of the Michael Reimer's Deliver Free PSD theme."
icon: newspaper-o
author:
@ -13,5 +13,16 @@ bugs: https://github.com/getgrav/grav-theme-deliver/issues
license: MIT
form:
validation: strict
validation: loose
fields:
dropdown.enabled:
type: toggle
label: Dropdown in navbar
highlight: 1
default: 0
options:
1: Enabled
0: Disabled
validate:
type: bool

View File

@ -5,7 +5,7 @@
<ul class="archives">
{% for tax,value in taxlist[taxonomy] %}
<li>
<a href="{{ base_url }}/tag{{ config.system.param_sep }}{{ tax|e('url') }}">{{ tax }} <span>({{ tax|length }})</span></a>
<a href="{{ base_url }}/tag{{ config.system.param_sep }}{{ tax|e('url') }}">{{ tax }} </a>
</li>
{% endfor %}
</ul>