{# Make sure any variables are listed inside the following if statement #}
{% if context %}
  {# {% set <%= componentName %> = context.<%= componentName %> %} #}
{% endif %}

<div class="<%= componentName %>">
  /* <%= componentName %> template file */
</div>

{# You can do Nunjucks logic in your templates that references the .yml settings
   What's Nunjucks: https://mozilla.github.io/nunjucks/templating.html #}
{#
{% if item.image == "blank" %}
  <span><!-- no image --></span>
  {% else %}
  {{ item.image }}
{% endif %}
#}
