mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
33 lines
901 B
HTML
33 lines
901 B
HTML
<a class="bd-link" href="{{ site.url }}{{ include.path }}">
|
|
{% if include.surtitle %}
|
|
<p class="bd-link-surtitle">
|
|
{{ include.surtitle }}
|
|
</p>
|
|
{% endif %}
|
|
<h2 class="bd-link-name">
|
|
<figure class="bd-link-figure">
|
|
{% if include.icon %}
|
|
<span class="bd-link-icon has-text-link">
|
|
<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>
|
|
{% if include.new %}
|
|
<span style="float: right;" class="ml-2 tag is-primary">
|
|
New!
|
|
</span>
|
|
{% endif %}
|
|
{{ include.name }}
|
|
</h2>
|
|
<p class="bd-link-subtitle">
|
|
{{ include.subtitle }}
|
|
</p>
|
|
{% if include.more %}
|
|
<div class="bd-link-more">
|
|
{{ include.more }}
|
|
</div>
|
|
{% endif %}
|
|
</a>
|