forked from jgthms/bulma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
more.html
42 lines (38 loc) · 1.02 KB
/
more.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
title: More
layout: default
breadcrumb:
- home
- more
---
{% include global/navbar.html id="More" %}
{%
include components/hero.html
color="link"
icon="fas fa-ellipsis-h"
title="More about Bulma"
%}
<main class="bd-main">
<div class="bd-posts">
{% for link_id in site.data.links.more %}
{% assign link = site.data.links.by_id[link_id] %}
<div class="bd-post">
<a class="bd-post-link" href="{{ site.url }}{{ link.path }}" style="--color: var(--{{ link.color }});">
<div class="bd-post-body">
<figure class="icon">
<i class="{% if link.icon_brand %}fab{% elsif link.icon_regular %}far{% else %}fas{% endif %} fa-{{ link.icon }}"></i>
</figure>
<div class="bd-post-content">
<h2 class="title">
{{ link.name }}
</h2>
<div class="subtitle">
{{ link.subtitle }}
</div>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
</main>