You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

8 lines
214 B

  1. {% if parents -%}
  2. <ul class="breadcrumb">
  3. {% for parent in parents %}
  4. <li><a href="/{{ parent.name|lower }}">{{ parent.page_title }}</a></li>
  5. {% endfor %}
  6. <li class="active">{{ title }}</li>
  7. </ul>
  8. {%- endif %}