community/templates/resource.html
2023-01-12 15:50:27 +00:00

21 lines
536 B
HTML

{% extends 'layout.html' %}
{% macro pathbar_segments(page) -%}
{% set current_page = page == this %}
{%- if page.parent -%}
{{ pathbar_segments(page.parent) }}
{% endif %}
<li class="d-inline">
{% if not current_page %}
<a href="{{ page|url }}" title="page.title">{{ page.title }}</a>
{% else %}
{{ page.title }}
{% endif %}
</li>
{% endmacro %}
{% block pathbar %}
<div style="" class="py-3 pl-4" id="pathbar">
<ul class="m-0 pl-3">{{ pathbar_segments(this.record) }}</ul>
</div>
{% endblock %}