forked from BYR-Navi/BYR-Navi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
21 lines (20 loc) · 881 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: default
active_key: home
---
{%- for section in site.data.links -%}
<div class="ui vertical stripe links segment">
<div class="ui equal width stackable internally celled grid">
<div class="center aligned row">
{%- for category in section.categories -%}
<div class="links column">
<div class="ui mini top attached label">{{ category.name }}</div>
<div class="ui mini labels">
{% for link in category.links %}<a class="ui mini {{ link.style }} label" href="{{ link.url }}" target="_blank">{% if link.icon %}<i class="{{ link.icon }} icon"></i>{% endif %}{{ link.name }}</a>{% endfor %}
</div>
</div>
{%- endfor -%}
</div>
</div>
</div>
{%- endfor -%}