{% capture content %} {% assign anchor_name = include.anchor_name | default: 'Variables' %} {% assign tab = include.tab | default: page.doc-tab %} {% assign subtab = include.subtab | default: page.doc-subtab %} {% assign type = include.type | default: tab %} {% assign data = include.data | default: site.data.variables[tab][subtab] %} {% assign variables = include.variables | default: data.vars %} {% assign table_class = include.table_class | default: 'is-bordered' %} {% if include.custom_message %} {{ include.custom_message }} {% else %} {% assign variables_link_text = "these variables" %} {% capture variables_link %} {% if data.file_url %} {{ variables_link_text }} {% else %} {{ variables_link_text }} {% endif %} {% endcapture %} You can use {{ variables_link | strip }} to customize this {{ type }}. Simply set one or multiple of these variables before importing Bulma. Learn how. {% endif %} {% endcapture %} {% include anchor.html name=anchor_name %}

{{ content | strip }}

{% for variable_hash in variables %} {% assign variable = variable_hash[1] %} {% endfor %}
Name Default value
Name Default value
{{ variable.name }} {{ variable.value }}