2018-04-11 12:54:56 +01:00
|
|
|
{% assign current_link_id = page.breadcrumb | last %}
|
|
|
|
|
|
2018-04-10 18:50:19 +01:00
|
|
|
<nav class="bd-categories">
|
|
|
|
|
{% for link_id in site.data.links.more %}
|
|
|
|
|
{% assign link = site.data.links.by_id[link_id] %}
|
|
|
|
|
|
|
|
|
|
<div class="bd-category">
|
|
|
|
|
<header class="bd-category-header">
|
2018-04-11 12:54:56 +01:00
|
|
|
<a class="bd-category-name {% if link_id == current_link_id %}is-active{% endif %}" href="{{ site.url }}{{ link.path }}">
|
2018-04-10 18:50:19 +01:00
|
|
|
<strong>{{ link.name }}</strong>
|
|
|
|
|
</a>
|
|
|
|
|
</header>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</nav>
|