24 lines
381 B
Twig
24 lines
381 B
Twig
name: {{ profile }}
|
|
type: {{ type }}
|
|
description: '{{ description }}'
|
|
core: {{ core }}
|
|
{% if distribution %}
|
|
|
|
distribution:
|
|
name: '{{ distribution }}'
|
|
{% endif %}
|
|
{% if dependencies %}
|
|
|
|
dependencies:
|
|
{% for dependency in dependencies %}
|
|
- '{{ dependency }}'
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if themes %}
|
|
|
|
themes:
|
|
{% for theme in themes %}
|
|
- '{{ theme }}'
|
|
{% endfor %}
|
|
{% endif %}
|