add missing quote to breadcrumb link (#8540)

This commit is contained in:
Frédéric Péters 2015-10-07 14:47:20 +02:00
parent e85e5d55e5
commit 44b045bb85
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class="page-{{ page.slug }}"
<ol class="box-breadcrumb breadcrumb">
{% for one_page in pages %}
{% if not forloop.last %}
<li><a href={{one_page.get_online_url}}">{{one_page.title}}</a></li>
<li><a href="{{one_page.get_online_url}}">{{one_page.title}}</a></li>
{% else %}
<li class="active">{{one_page.title}}</li>
{% endif %}