Skip to content

Instantly share code, notes, and snippets.

View eeshangarg's full-sized avatar
🏠
Working from home

Eeshan Garg eeshangarg

🏠
Working from home
View GitHub Profile
@eeshangarg
eeshangarg / breadcrumb_lektor_bootstrap.py
Created March 24, 2017 23:58
Breadcrumb in Lektor using Bootstrap
<ol class="breadcrumb">
{% set crumbs = [] %}
{% set current = {'crumb': this} %}
{% for i in this._path.split("/") %}
{% if current.crumb is not none %}
{% if crumbs.insert(0, current.crumb) %}{% endif %}
{% if current.update({"crumb": current.crumb.parent}) %}{% endif %}
{% endif %}
{% endfor %}
{% for crumb in crumbs %}