{# Figure with optional caption and link. Usage: {{< figure src=/images/cat.jpg alt="A cat" caption="Photo by Jane" >}} #} {% set src = shortcode.Get("src") %} {% set alt = shortcode.Get("alt") %} {% set caption = shortcode.Get("caption") %} {% set link = shortcode.Get("link") %} {% if src %}
{% if link %} {% end %} {{ alt }} {% if link %} {% end %} {% if caption %}
{{ caption }}
{% end %}
{% end %}