├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── config.png └── screenshot.gif ├── blueprints.yaml ├── cascade-filters.php ├── cascade-filters.yaml ├── classes └── cascade-filters.php ├── languages.yaml └── templates └── partials └── cascade-filters.html.twig /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # v0.1.0 2 | ## 05/27/2017 3 | 4 | 1. [](#new) 5 | * ChangeLog started... 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash0080/grav-plugin-cascade-filters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash0080/grav-plugin-cascade-filters/HEAD/README.md -------------------------------------------------------------------------------- /assets/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash0080/grav-plugin-cascade-filters/HEAD/assets/config.png -------------------------------------------------------------------------------- /assets/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash0080/grav-plugin-cascade-filters/HEAD/assets/screenshot.gif -------------------------------------------------------------------------------- /blueprints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash0080/grav-plugin-cascade-filters/HEAD/blueprints.yaml -------------------------------------------------------------------------------- /cascade-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash0080/grav-plugin-cascade-filters/HEAD/cascade-filters.php -------------------------------------------------------------------------------- /cascade-filters.yaml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | select_pages: '/' 3 | taxonomy_filters: '' -------------------------------------------------------------------------------- /classes/cascade-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash0080/grav-plugin-cascade-filters/HEAD/classes/cascade-filters.php -------------------------------------------------------------------------------- /languages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash0080/grav-plugin-cascade-filters/HEAD/languages.yaml -------------------------------------------------------------------------------- /templates/partials/cascade-filters.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash0080/grav-plugin-cascade-filters/HEAD/templates/partials/cascade-filters.html.twig --------------------------------------------------------------------------------