Skip to content

Instantly share code, notes, and snippets.

@kamartem
Forked from VincentLoy/breadcrumb.jinja
Created March 22, 2023 19:12
Show Gist options
  • Save kamartem/52498432b955fa0ce4c49cd033a4f320 to your computer and use it in GitHub Desktop.
Save kamartem/52498432b955fa0ce4c49cd033a4f320 to your computer and use it in GitHub Desktop.
Easy snippet to get breadcrumb in a Wagtail page
<div class="breadcrumb-content">
{% if self.get_ancestors|length > 1 %}
<ul class="breadcrumb">
{% for p in self.get_ancestors %}
{% if p.is_root == False %}
<li><a href="{{ p.url }}">{{ p.title }}</a></li>
{% endif %}
{% endfor %}
<li class="active">{{ self.title }}</li>
</ul>
{% endif %}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment