mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
20 lines
597 B
HTML
20 lines
597 B
HTML
<article class="media bd-pro bd-is-{{ include.type }}">
|
|
<aside class="media-left">
|
|
<span class="icon">
|
|
<i class="{% if include.icon_brand %}fab{% else %}fas{% endif %} fa-{{ include.icon }}"></i>
|
|
</span>
|
|
</aside>
|
|
<div class="media-content">
|
|
<p class="title is-5 pro-title">
|
|
{{ include.title }}
|
|
</p>
|
|
<div class="bd-pro-content">
|
|
{{ include.content | markdownify }}
|
|
|
|
{% if include.title == 'No JavaScript' %}
|
|
{% include elements/tw.html tweet_id="860885116909998080" modifier='bd-is-grey' %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</article>
|