-
Notifications
You must be signed in to change notification settings - Fork 1
component
mortendk edited this page Sep 15, 2022
·
1 revision
{%- if env.mode != 'prod' %}<!-- src/__includes/component/image.njk -->{%- endif -%}
{# Show all componenets that are a given page #}
{% for component in components %}
{# What type are we looking for ex image #}
{% if component.type == "image " %}
{# test if there is set a componenet else print a warning #}
{% if component.template %}
{% include component.template %}
{% endif %}
{% endif %}
{% endfor %}