This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/drupal/console/templates/theme/info.yml.twig

24 lines
577 B
Twig
Raw Normal View History

2018-11-23 12:29:20 +00:00
name: {{ theme }}
type: {{ type }}
description: '{{ description }}'
package: {{ package }}
core: {{ core }}
libraries:
- {{ machine_name }}/{{ global_library }}
{% if libraries %}
{% for library in libraries %}
- {{ machine_name }}/{{ library.library_name }}
{% endfor %}
{% endif %}
base theme: {{ base_theme }}
{% if base_theme == 'classy' %}
#Using Classy as a base theme https://www.drupal.org/theme-guide/8/classy
{% endif %}
{% if regions %}
regions:
{% for region in regions %}
{{ region.region_machine_name }}: {{ region.region_name }}
{% endfor %}
{% endif %}