You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
571 B
13 lines
571 B
{% if page.categories and page.categories != empty %}
|
|
<nav class="breadcrumbs">
|
|
<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
|
|
<a href="{{ site.url }}" itemprop="url">
|
|
<span itemprop="title">Home</span>
|
|
</a> ›
|
|
<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
|
|
<a href="{{ site.url }}/{{ page.categories | first }}/" itemprop="url">
|
|
<span itemprop="title">{{ page.categories | first | replace: '-',' ' | capitalize }}</span>
|
|
</a>
|
|
</span>
|
|
</nav><!-- /.breadcrumbs -->
|
|
{% endif %}
|