mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
13 lines
338 B
HTML
13 lines
338 B
HTML
{% assign imageName = include.path %}
|
|
{% assign imagePath = "/assets/images/" | prepend: site.url | append: imageName %}
|
|
|
|
<figure class="bd-skrin">
|
|
<div>
|
|
<img
|
|
src="{{ imagePath }}"
|
|
width="{{ include.width }}"
|
|
height="{{ include.height }}"
|
|
>
|
|
<figcaption>{{ include.caption }}</figcaption>
|
|
</div>
|
|
</figure> |