mirror of
https://gitlab.com/veilid/veilid-dot-com.git
synced 2025-03-13 10:56:35 -04:00
14 lines
395 B
Twig
14 lines
395 B
Twig
|
|
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="/">Home</a></li>
|
|
{% if page.section %}
|
|
{% set parts = page.path | preg_split('+/+') %}
|
|
<li class="breadcrumb-item"><a href="/{{ parts[0] }}">{{ page.section }}</a></li>
|
|
{% endif %}
|
|
<li class="breadcrumb-item active" aria-current="page">{{ page.title }}</li>
|
|
</ol>
|
|
</nav>
|
|
|