summaryrefslogtreecommitdiffstatshomepage
path: root/templates/shortcodes/img.html
blob: 8ff0820b6a9b9d35cd7aecb88072271ca2ce3c5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<figure>
  {% if href %}<a href="{{ href }}">{% endif %}
  <img src="{{ src }}" alt="{{ alt }}"
    {% if title %}title="{{ title }}"{% endif %}
    {% if height %}height="{{ height }}"{% endif %}
    {% if width %}width="{{ width }}"{% endif %}
    >
  {% if href %}</a>{% endif %}

  {% if caption %}
  <figcaption>{{ caption | safe }}</figcaption>
  {% endif %}
</figure>