12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {% set githubid = component.author.githubid ?: component.author.name|hyphenize -%}
- name: {{ component.name|titleize }}
- slug: {{ component.name|hyphenize }}
- type: theme
- version: 0.1.0
- description: {{ component.description }}
- icon: rebel
- author:
- name: {{ component.author.name }}
- email: {{ component.author.email }}
- homepage: https://github.com/{{ githubid }}/grav-theme-{{ component.name|hyphenize }}
- demo: http://demo.yoursite.com
- keywords: grav, theme, etc
- bugs: https://github.com/{{ githubid }}/grav-theme-{{ component.name|hyphenize }}/issues
- readme: https://github.com/{{ githubid }}/grav-theme-{{ component.name|hyphenize }}/blob/develop/README.md
- license: MIT
- dependencies:
- - { name: grav, version: '>=1.6.0' }
- form:
- validation: loose
- fields:
- dropdown.enabled:
- type: toggle
- label: Dropdown in Menu
- highlight: 1
- default: 1
- options:
- 1: PLUGIN_ADMIN.ENABLED
- 0: PLUGIN_ADMIN.DISABLED
- validate:
- type: bool
- production:
- type: toggle
- label: Production Mode
- highlight: 1
- default: 1
- options:
- 1: PLUGIN_ADMIN.ENABLED
- 0: PLUGIN_ADMIN.DISABLED
- validate:
- type: bool
|