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.

breadcrumbs.html 205 B

11 年之前
11 年之前
123456
  1. <ul class="breadcrumb">
  2. {% for parent in parents or [] %}
  3. <li><a href="/{{ parent.name|lower }}">{{ parent.page_title or parent.title }}</a></li>
  4. {% endfor %}
  5. <li class="active">{{ title }}</li>
  6. </ul>