activated pathauto for url aliases

This commit is contained in:
Bachir Soussi Chiadmi
2018-03-29 23:57:27 +02:00
parent 33a04c55b1
commit 4921e8189b
279 changed files with 30072 additions and 0 deletions
@@ -0,0 +1,14 @@
{% if trail %}
<div class="wizard-trail">
{% for key, value in trail %}
{% if key is same as(step) %}
<strong>{{ link(value.title, value.url) }}</strong>
{% else %}
{{ link(value.title, value.url) }}
{% endif %}
{% if value is not same as(trail|last) %}
{{ divider }}
{% endif %}
{% endfor %}
</div>
{% endif %}
@@ -0,0 +1,14 @@
{% if trail %}
<div class="wizard-trail">
{% for key, value in trail %}
{% if key is same as(step) %}
<strong>{{ value }}</strong>
{% else %}
{{ value }}
{% endif %}
{% if value is not same as(trail|last) %}
{{ divider }}
{% endif %}
{% endfor %}
</div>
{% endif %}