bulma/docs/more.html

43 lines
1.0 KiB
HTML
Raw Normal View History

2018-04-10 17:22:04 +00:00
---
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"
%}
2018-04-10 17:22:04 +00:00
<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>
2018-04-10 17:22:04 +00:00
<div class="bd-post-content">
<h2 class="title">
{{ link.name }}
</h2>
<div class="subtitle">
{{ link.subtitle }}
</div>
</div>
2018-04-10 17:22:04 +00:00
</div>
</a>
2018-04-10 17:22:04 +00:00
</div>
{% endfor %}
2018-04-10 17:22:04 +00:00
</div>
</main>