mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
18 lines
599 B
HTML
18 lines
599 B
HTML
<a class="bd-link" href="{{ include.url }}">
|
|
<h2 class="bd-link-name">
|
|
<figure class="bd-link-figure">
|
|
{% if include.icon %}
|
|
<span class="bd-link-icon has-text-{% if include.color %}{{ include.color }}{% else %}link{% endif %}">
|
|
<i class="{% if include.icon_brand %}fab{% elsif include.icon_regular %}far{% else %}fas{% endif %} fa-{{ include.icon }}"></i>
|
|
</span>
|
|
{% else %}
|
|
<span class="bd-link-counter"></span>
|
|
{% endif %}
|
|
</figure>
|
|
{{ include.name }}
|
|
</h2>
|
|
<p class="bd-link-subtitle">
|
|
{{ include.subtitle }}
|
|
</p>
|
|
</a>
|