bulma/docs/_includes/elements/link.html

33 lines
901 B
HTML
Raw Normal View History

2020-06-07 13:15:06 +00:00
<a class="bd-link" href="{{ site.url }}{{ include.path }}">
2018-04-11 23:20:58 +00:00
{% if include.surtitle %}
<p class="bd-link-surtitle">
{{ include.surtitle }}
</p>
{% endif %}
2018-04-10 21:50:18 +00:00
<h2 class="bd-link-name">
<figure class="bd-link-figure">
{% if include.icon %}
2019-02-08 12:15:52 +00:00
<span class="bd-link-icon has-text-link">
2018-04-10 21:50:18 +00:00
<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>
2020-09-27 10:29:35 +00:00
{% if include.new %}
<span style="float: right;" class="ml-2 tag is-primary">
New!
</span>
{% endif %}
2018-04-10 21:50:18 +00:00
{{ include.name }}
</h2>
<p class="bd-link-subtitle">
{{ include.subtitle }}
</p>
2018-04-11 17:58:11 +00:00
{% if include.more %}
<div class="bd-link-more">
{{ include.more }}
</div>
{% endif %}
2018-04-10 21:50:18 +00:00
</a>