bulma/docs/_includes/components/more.html

16 lines
490 B
HTML
Raw Normal View History

2018-04-11 11:54:56 +00:00
{% assign current_link_id = page.breadcrumb | last %}
2018-04-10 17:50:19 +00: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 11:54:56 +00:00
<a class="bd-category-name {% if link_id == current_link_id %}is-active{% endif %}" href="{{ site.url }}{{ link.path }}">
2018-04-10 17:50:19 +00:00
<strong>{{ link.name }}</strong>
</a>
</header>
</div>
{% endfor %}
</nav>