breadcrumbs.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {% case site.category_archive.type %}
  2. {% when "liquid" %}
  3. {% assign path_type = "#" %}
  4. {% when "jekyll-archives" %}
  5. {% assign path_type = nil %}
  6. {% endcase %}
  7. {% if page.collection != 'posts' %}
  8. {% assign path_type = nil %}
  9. {% assign crumb_path = '/' %}
  10. {% else %}
  11. {% assign crumb_path = site.category_archive.path %}
  12. {% endif %}
  13. <nav class="breadcrumbs">
  14. <ol itemscope itemtype="http://schema.org/BreadcrumbList">
  15. {% assign crumbs = page.url | split: '/' %}
  16. {% assign i = 1 %}
  17. {% for crumb in crumbs offset: 1 %}
  18. {% if forloop.first %}
  19. <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
  20. <a href="{{ site.url }}{{ site.baseurl }}/" itemprop="item"><span itemprop="name">{{ site.data.ui-text[site.locale].breadcrumb_home_label | default: "Home" }}</span></a>
  21. <meta itemprop="position" content="{{ i }}" />
  22. </li>
  23. <span class="sep">{{ site.data.ui-text[site.locale].breadcrumb_separator | default: "/" }}</span>
  24. {% endif %}
  25. {% if forloop.last %}
  26. <li class="current">{{ page.title }}</li>
  27. {% else %}
  28. {% assign i = i | plus: 1 %}
  29. <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
  30. <a href="{{ crumb | downcase | replace: '%20', '-' | prepend: path_type | prepend: crumb_path | absolute_url }}" itemprop="item"><span itemprop="name">{{ crumb | replace: '-', ' ' | replace: '%20', ' ' | capitalize }}</span></a>
  31. <meta itemprop="position" content="{{ i }}" />
  32. </li>
  33. <span class="sep">{{ site.data.ui-text[site.locale].breadcrumb_separator | default: "/" }}</span>
  34. {% endif %}
  35. {% endfor %}
  36. </ol>
  37. </nav>