├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets └── demo-composition-min.png ├── aura.php ├── aura.yaml ├── blueprints.yaml ├── blueprints └── default.yaml ├── classes ├── aura.php ├── image.php ├── organization.php ├── person.php ├── webpage.php └── website.php └── composer.json /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.vscode 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo-composition-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/assets/demo-composition-min.png -------------------------------------------------------------------------------- /aura.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/aura.php -------------------------------------------------------------------------------- /aura.yaml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | -------------------------------------------------------------------------------- /blueprints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/blueprints.yaml -------------------------------------------------------------------------------- /blueprints/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/blueprints/default.yaml -------------------------------------------------------------------------------- /classes/aura.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/classes/aura.php -------------------------------------------------------------------------------- /classes/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/classes/image.php -------------------------------------------------------------------------------- /classes/organization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/classes/organization.php -------------------------------------------------------------------------------- /classes/person.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/classes/person.php -------------------------------------------------------------------------------- /classes/webpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/classes/webpage.php -------------------------------------------------------------------------------- /classes/website.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/classes/website.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-j-m/grav-plugin-aura/HEAD/composer.json --------------------------------------------------------------------------------