1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
{# templates/partials/breadcrumbs.html #} <div class="breadcrumbs"> <nav> <a href="/">Home</a> {% if section %} » <a href="{{ section.permalink }}">{{ section.title }}</a> {% endif %} {% if page %} {% if page.ancestors | length == 2 %} {% set path = page.ancestors[1] %} {# path value is "info/_index.md" #} {# get section information from path file. #} {% set sec = get_section(path=path) %} » <a href="{{ sec.permalink }}">{{ sec.title }}</a> {% endif %} » {{ page.title }} {% endif %} {% if terms is defined %} » Categories {% endif %} </nav> </div> |
—