mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-05 21:57:51 +02:00
11 lines
548 B
HTML
11 lines
548 B
HTML
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="{% url 'index' %}">Home</a></li>
|
|
{% for p in pages %}
|
|
<li class="breadcrumb-item{% if forloop.last %} active {% endif %}" aria-current="page">{% if forloop.last %}{{ p.name }}{% else %}
|
|
<a href="{% url 'portal_page' p.path %}">{{ p.name }}</a>
|
|
{% endif %}</li>
|
|
{% endfor %}
|
|
</ol>
|
|
</nav>
|