blueprints.yaml.twig 725 B

12345678910111213141516171819
  1. {% set githubid = component.author.githubid ?: component.author.name|hyphenize -%}
  2. name: {{ component.name|titleize }}
  3. slug: {{ component.name|hyphenize }}
  4. type: theme
  5. version: 0.1.0
  6. description: {{ component.description }}
  7. icon: rebel
  8. author:
  9. name: {{ component.author.name }}
  10. email: {{ component.author.email }}
  11. homepage: https://github.com/{{ githubid }}/grav-theme-{{ component.name|hyphenize }}
  12. demo: http://demo.yoursite.com
  13. keywords: grav, theme, etc
  14. bugs: https://github.com/{{ githubid }}/grav-theme-{{ component.name|hyphenize }}/issues
  15. readme: https://github.com/{{ githubid }}/grav-theme-{{ component.name|hyphenize }}/blob/develop/README.md
  16. license: MIT
  17. dependencies:
  18. - { name: grav, version: '>=1.6.0' }