{% if BRANDING_THEME_REPOS %}
# Branding plugin: cloning the comprehensive theme repos
RUN mkdir /openedx/themes
{% for repo in BRANDING_THEME_REPOS %}
RUN git clone --depth=1 {{ repo['url'] }} /openedx/themes/{{ repo['name'] }} --branch {{ repo['version'] }}
{% endfor %}
{% endif %}
