mirror of
https://github.com/86Box/86box.github.io.git
synced 2026-02-21 09:05:35 -07:00
18 lines
455 B
HTML
18 lines
455 B
HTML
{{ include.separator | default: "<hr />" }}
|
|
<figure class="image">
|
|
{%- if include.heading %}
|
|
<a name="{{ include.heading | slugify }}">
|
|
{%- endif %}
|
|
<img src="{{ include.url }}" class="heading"
|
|
{% if include.heading %}
|
|
alt="{{ include.heading }}"
|
|
{% endif %}
|
|
{% if include.tooltip or include.heading %}
|
|
title="{{ include.tooltip | default: include.heading }}"
|
|
{% endif %}
|
|
/>
|
|
{%- if include.heading %}
|
|
</a>
|
|
{%- endif %}
|
|
</figure>
|