mirror of
https://github.com/jgthms/bulma
synced 2026-03-15 02:04:29 -07:00
Init v1
This commit is contained in:
@@ -1,9 +1,44 @@
|
||||
---
|
||||
title: Documentation
|
||||
layout: documentation
|
||||
breadcrumb:
|
||||
- home
|
||||
- documentation
|
||||
layout: docs
|
||||
route: documentation
|
||||
title: Official Bulma Documentation
|
||||
subtitle: Everything you need to create a website with Bulma.
|
||||
hero_prints:
|
||||
- label: "Creative Commons"
|
||||
icon: "fa-brands fa-creative-commons"
|
||||
- label: "Contribute on GitHub"
|
||||
icon: "fa-solid fa-code-pull-request"
|
||||
---
|
||||
{% assign category_ids = site.data.links.category_ids %}
|
||||
|
||||
{% include components/links.html icons=true %}
|
||||
<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>
|
||||
|
||||
Reference in New Issue
Block a user