-
-
Notifications
You must be signed in to change notification settings - Fork 4k
/
documentation.html
46 lines (42 loc) · 1.3 KB
/
documentation.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
43
44
45
46
---
layout: docs
route: documentation
title: Official Bulma Documentation
subtitle: Everything you need to create a website with Bulma.
hero_prints:
- label: "Creative Commons"
icon: "fab fa-creative-commons"
url: https://creativecommons.org/licenses/by-nc-sa/4.0/
- label: "Contribute on GitHub"
icon: "fas fa-code-pull-request"
url: https://github.com/jgthms/bulma
---
{% assign category_ids = site.data.links.category_ids %}
<div class="bd-stack">
{% for category_id in category_ids %}
{% assign category = site.data.links.by_id[category_id] %}
{% assign link_ids = site.data.links.categories[category_id] %}
<h3 class="bd-link-heading bd-theme-{{ category_id }}">
<span class="icon">
<i class="{{ category.icon }}"></i>
</span>
<strong>{{ category.name }}</strong>
</h3>
<div class="bd-links bd-theme-{{ category_id }}">
{% for link_id in link_ids %}
{% assign link = site.data.links.by_id[link_id] %}
{%
include docs/elements/link.html
path=link.path
color=link.color
icon_brand=link.icon_brand
icon_regular=link.icon_regular
icon=link.icon
name=link.name
subtitle=link.subtitle
new=link.new
%}
{% endfor %}
</div>
{% endfor %}
</div>