mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 06:17:17 +00:00
removed breadcrumbs block from templates added breadcrumbs that were missing from settings page
7 lines
217 B
HTML
7 lines
217 B
HTML
{% for crumb in breadcrumbs %}
|
|
{% if not forloop.last %}
|
|
<li><a href="{{ crumb.url }}">{{ crumb.name }}</a></li>
|
|
{% else %}
|
|
<li class="active">{{ crumb.name }}</li>
|
|
{% endif %}
|
|
{% endfor %} |