I\'m aware that there are single-level breadcrumbs in http://raphinou.github.com/jekyll-base/ but I\'m looking for some good ways to have breadcrumbs on a Jekyll sit
I managed to simply it even further. Here is what I'm using now:
{% assign crumbs = page.url | split: '/' %} Home {% for crumb in crumbs offset: 1 %} {% if forloop.last %} {{ crumb | replace:'-',' ' }} {% else %} {{ crumb | replace:'-',' ' }} {% endif %} {% endfor %}