{% capture img %}
{% endcapture %}
{% if include.figcaption %}
{% capture content %}
{{ img }}
{{ include.figcaption }}
{% endcapture %}
{% assign img=content %}
{% endif %}
{% if include.fullbleed %}
{% include fullbleed.html content=img %}
{% else %}
{% include wide.html content=img %}
{% endif %}