mirror of
https://github.com/jgthms/bulma
synced 2026-03-15 02:04:29 -07:00
Fix #1190
This commit is contained in:
@@ -9,29 +9,29 @@
|
||||
{% 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 %}
|
||||
|
||||
|
||||
<a href="{{ data.file_url }}" target="_blank">{{ variables_link_text }}</a>
|
||||
|
||||
|
||||
{% else %}
|
||||
|
||||
|
||||
{{ variables_link_text }}
|
||||
|
||||
|
||||
{% endif %}
|
||||
|
||||
|
||||
{% endcapture %}
|
||||
|
||||
|
||||
You can use {{ variables_link | strip }} to <strong>customize</strong> this {{ type }}. Simply set one or multiple of these variables <em>before</em> importing Bulma. <a href="{{ site.url }}/documentation/overview/customize/">Learn how</a>.
|
||||
|
||||
|
||||
{% endif %}
|
||||
|
||||
{% endcapture %}
|
||||
@@ -59,8 +59,8 @@
|
||||
{% for variable_hash in variables %}
|
||||
{% assign variable = variable_hash[1] %}
|
||||
<tr>
|
||||
<td>
|
||||
<code>{{ variable.name }}</code>
|
||||
<td >
|
||||
<code style="white-space: nowrap;">{{ variable.name }}</code>
|
||||
</td>
|
||||
<td>
|
||||
<code>{{ variable.value }}</code>
|
||||
|
||||
Reference in New Issue
Block a user