12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- return [
- '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
- 'filename' => '/home/kevin/Sites/static-ethica.net/user/themes/ethica/blueprints.yaml',
- 'modified' => 1510827673,
- 'data' => [
- 'name' => 'Antimatter',
- 'version' => '2.1.2',
- 'description' => 'Antimatter is the default theme included with **Grav**',
- 'icon' => 'empire',
- 'author' => [
- 'name' => 'Team Grav',
- 'email' => 'devs@getgrav.org',
- 'url' => 'http://getgrav.org'
- ],
- 'homepage' => 'https://github.com/getgrav/grav-theme-antimatter',
- 'demo' => 'http://demo.getgrav.org/blog-skeleton',
- 'keywords' => 'antimatter, theme, core, modern, fast, responsive, html5, css3',
- 'bugs' => 'https://github.com/getgrav/grav-theme-antimatter/issues',
- 'license' => 'MIT',
- 'form' => [
- 'validation' => 'loose',
- 'fields' => [
- 'dropdown.enabled' => [
- 'type' => 'toggle',
- 'label' => 'Dropdown in navbar',
- 'highlight' => 1,
- 'default' => 1,
- 'options' => [
- 1 => 'PLUGIN_ADMIN.ENABLED',
- 0 => 'PLUGIN_ADMIN.DISABLED'
- ],
- 'validate' => [
- 'type' => 'bool'
- ]
- ]
- ]
- ]
- ]
- ];
|