├── LICENSE.md ├── Readme.md ├── composer.json ├── config ├── api.php ├── fieldMethods.php ├── fields.php └── translations.php ├── examples ├── blueprints │ └── page.yml └── snippets │ └── sidebarnavigation.php ├── index.css ├── index.js ├── index.php ├── lib └── Group.php └── translations ├── de.php ├── en.php ├── es.php ├── fr.php └── it.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/Readme.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/composer.json -------------------------------------------------------------------------------- /config/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/config/api.php -------------------------------------------------------------------------------- /config/fieldMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/config/fieldMethods.php -------------------------------------------------------------------------------- /config/fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/config/fields.php -------------------------------------------------------------------------------- /config/translations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/config/translations.php -------------------------------------------------------------------------------- /examples/blueprints/page.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/examples/blueprints/page.yml -------------------------------------------------------------------------------- /examples/snippets/sidebarnavigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/examples/snippets/sidebarnavigation.php -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/index.css -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/index.js -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/index.php -------------------------------------------------------------------------------- /lib/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/lib/Group.php -------------------------------------------------------------------------------- /translations/de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/translations/de.php -------------------------------------------------------------------------------- /translations/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/translations/en.php -------------------------------------------------------------------------------- /translations/es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/translations/es.php -------------------------------------------------------------------------------- /translations/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/translations/fr.php -------------------------------------------------------------------------------- /translations/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philippoehrlein/kirby-navigation-groups/HEAD/translations/it.php --------------------------------------------------------------------------------