Documentation

BulmHex Documentation.

Hero block

1
2
3
4
5
6
hero:
title: BulmHex
subtitle: Hexo + Bulma = Awesome!
class:
- is-info
content: blocks/hero.md
1
2
3
4
footer:
class:
- is-text-centered
content: blocks/footer.md

You can add menus in pages. id is the HTML tag id you want to jump to. Add this in front matter:

1
2
3
4
5
6
7
8
menu:
- title: First item
id: First-item
- title: Item with submenu
id: Item-with-submenu
submenu:
- title: Sub-item
id: Sub-item

Template tags

There are various tags available that you can use them directly in your markdown!

Columns

1
2
3
4
{% columns %}
{% column is-third %} 1/3 {% endcolumn %}
{% column %} 2/3 (auto) {% endcolumn %}
{% endcolumns %}
1/3

2/3 (auto)

Notifications

1
2
{% notification is-success %} I'm successful {% endnotification %}
{% notification is-danger %} I'm dangerous {% endnotification %}
I’m successful
I’m dangerous

Icons

1
{% icon home is-large %}

Title

1
2
{% title "This is the title content" is-1 %}
{% subtitle "This is the title content" is-3 %}

This is the title content

This is the subtitle content

Messages

1
2
3
{% message "Yeah!"  is-success %}
A successful message!
{% endmessage %}
Yeah!

A successful message!

Buttons

1
{% button "Large warning button" "/docs" 'is-large is-warning' %}
Large warning button

With icon

1
{% button "Large warning button" "/docs" 'is-large is-warning' %}
Outlined danger button with icon