bulma/docs/documentation.html

47 lines
1.3 KiB
HTML
Raw Normal View History

2018-04-09 13:15:31 +00:00
---
2024-03-21 16:11:54 +00:00
layout: docs
route: documentation
title: Official Bulma Documentation
subtitle: Everything you need to create a website with Bulma.
hero_prints:
- label: "Creative Commons"
2024-03-23 19:25:04 +00:00
icon: "fab fa-creative-commons"
2024-07-01 14:37:50 +00:00
url: https://creativecommons.org/licenses/by-nc-sa/4.0/
2024-03-21 16:11:54 +00:00
- label: "Contribute on GitHub"
2024-03-23 19:25:04 +00:00
icon: "fas fa-code-pull-request"
2024-07-01 14:37:50 +00:00
url: https://github.com/jgthms/bulma
2018-04-09 13:15:31 +00:00
---
2024-03-21 16:11:54 +00:00
{% assign category_ids = site.data.links.category_ids %}
2018-04-09 19:19:29 +00:00
2024-03-21 16:11:54 +00:00
<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>