Files
bulma/docs/_includes/snippet.html

13 lines
411 B
HTML
Raw Normal View History

2017-08-30 21:33:49 +01:00
<div class="
bd-snippet
{% if include.horizontal %}bd-is-horizontal{% else %}bd-is-vertical{% endif %}
{% if include.size %}bd-is-{{ include.size }}{% endif %}
">
2017-08-30 20:44:39 +01:00
<div class="bd-snippet-preview">
{{ include.content }}
</div>
2017-08-30 21:33:49 +01:00
<div class="bd-snippet-code {% unless include.clipped %}highlight-full{% endunless %}">
2017-08-30 20:44:39 +01:00
{% highlight html %}{{ include.content }}{% endhighlight %}
</div>
</div>