├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets └── readme_1.png ├── blueprints.yaml ├── composer.json ├── composer.lock ├── css └── langswitcher.css ├── langswitcher.php ├── langswitcher.yaml ├── languages.yaml ├── templates └── partials │ ├── langswitcher-logic.html.twig │ ├── langswitcher-long.html.twig │ ├── langswitcher-short.html.twig │ ├── langswitcher.hreflang.html.twig │ └── langswitcher.html.twig └── vendor ├── autoload.php └── composer ├── ClassLoader.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php └── installed.json /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/README.md -------------------------------------------------------------------------------- /assets/readme_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/assets/readme_1.png -------------------------------------------------------------------------------- /blueprints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/blueprints.yaml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/composer.lock -------------------------------------------------------------------------------- /css/langswitcher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/css/langswitcher.css -------------------------------------------------------------------------------- /langswitcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/langswitcher.php -------------------------------------------------------------------------------- /langswitcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/langswitcher.yaml -------------------------------------------------------------------------------- /languages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/languages.yaml -------------------------------------------------------------------------------- /templates/partials/langswitcher-logic.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/templates/partials/langswitcher-logic.html.twig -------------------------------------------------------------------------------- /templates/partials/langswitcher-long.html.twig: -------------------------------------------------------------------------------- 1 | {{ native_name(language)|capitalize }} -------------------------------------------------------------------------------- /templates/partials/langswitcher-short.html.twig: -------------------------------------------------------------------------------- 1 | {{ language|upper }} -------------------------------------------------------------------------------- /templates/partials/langswitcher.hreflang.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/templates/partials/langswitcher.hreflang.html.twig -------------------------------------------------------------------------------- /templates/partials/langswitcher.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/templates/partials/langswitcher.html.twig -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getgrav/grav-plugin-langswitcher/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- 1 | [] 2 | --------------------------------------------------------------------------------