generated from digitalmalayali/linkhub-jekyll-theme
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.html
17 lines (17 loc) · 1.46 KB
/
links.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<main>
{% for button in site.data.links.buttons %}
<h2 class="text-center">{{ button.category }}</h2>
{% for item in button.items %}
<div class="row">
{% if item.tag %}
<div class="col link is-center">
{% else %}
<div class="col is-center">
{% endif %}
{% if site.data.links.fixed-button-width == true %}
<a class="button outline secondary" style="width:50%" href="{{ item.url }}" target="_blank">{% else %}<a class="button outline secondary" href="{{ item.url }}" target="_blank">{% endif %}{% if site.data.links.icon-position == "right" %}{% if item.tag %}<span class="tag is-small bd-success text-success" style="margin-right:.5em">{{ item.tag}}</span>{% endif %}{{ item.title }}{% if item.icon %}<span class="iconify-inline" data-icon="{{ item.icon }}" style="margin-left:.5em;margin-right:0"></span>{% endif %}{% if item.custom-icon %}<span class="custom-icon" style="margin-left:.5em">{{ item.custom-icon }}</span>{% endif %}</a>{% else %}{% if item.icon %}<span class="iconify-inline" data-icon="{{ item.icon }}"></span>{% endif %}{% if item.custom-icon %}<span class="custom-icon" style="margin-right:.5em">{{ item.custom-icon}}</span>{% endif %}{{ item.title }}{% if item.tag %}<span class="tag is-small bd-success text-success" style="margin-left:.5em">{{ item.tag }}</span>{% endif %}</a>{% endif %}
</div>
</div>
{% endfor %}
{% endfor %}
</main>