├── .gitignore ├── .jscsrc ├── .jshintrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── README.md ├── admin ├── class-meta.php └── views │ └── meta-box.php ├── assets └── plugin │ ├── .scss-lint.yml │ ├── css │ ├── partials │ │ ├── _animation.scss │ │ ├── _base.scss │ │ └── _gallery.scss │ ├── variables │ │ ├── _colors.scss │ │ └── _icons.scss │ └── wp-featherlight.scss │ └── js │ └── wpFeatherlight.js ├── composer.json ├── composer.lock ├── config ├── .jshintrc └── grunt │ ├── aliases.js │ ├── concat.js │ ├── copy.js │ ├── replace.js │ └── version.js ├── css ├── wp-featherlight-rtl.css ├── wp-featherlight-rtl.css.map ├── wp-featherlight-rtl.min.css ├── wp-featherlight.css └── wp-featherlight.min.css ├── gruntfile.js ├── includes ├── class-i18n.php ├── class-plugin.php ├── class-scripts.php └── constants.php ├── js ├── vendor │ ├── featherlight.gallery.js │ ├── featherlight.gallery.min.js │ ├── featherlight.js │ ├── featherlight.min.js │ ├── jquery.detect_swipe.js │ └── jquery.detect_swipe.min.js ├── wpFeatherlight.js ├── wpFeatherlight.min.js ├── wpFeatherlight.pkgd.js └── wpFeatherlight.pkgd.min.js ├── languages ├── src │ ├── wp-featherlight-es_ES.po │ ├── wp-featherlight-fr_FR.po │ └── wp-featherlight-pt_BR.po ├── wp-featherlight-de_DE.mo ├── wp-featherlight-es_ES.mo ├── wp-featherlight-fr_FR .mo ├── wp-featherlight-fr_FR.mo ├── wp-featherlight-pl_PL.mo ├── wp-featherlight-pt_BR.mo └── wp-featherlight.pot ├── package.json ├── readme.txt ├── wp-featherlight.php └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/.jshintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/README.md -------------------------------------------------------------------------------- /admin/class-meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/admin/class-meta.php -------------------------------------------------------------------------------- /admin/views/meta-box.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/admin/views/meta-box.php -------------------------------------------------------------------------------- /assets/plugin/.scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/assets/plugin/.scss-lint.yml -------------------------------------------------------------------------------- /assets/plugin/css/partials/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/assets/plugin/css/partials/_animation.scss -------------------------------------------------------------------------------- /assets/plugin/css/partials/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/assets/plugin/css/partials/_base.scss -------------------------------------------------------------------------------- /assets/plugin/css/partials/_gallery.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/assets/plugin/css/partials/_gallery.scss -------------------------------------------------------------------------------- /assets/plugin/css/variables/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/assets/plugin/css/variables/_colors.scss -------------------------------------------------------------------------------- /assets/plugin/css/variables/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/assets/plugin/css/variables/_icons.scss -------------------------------------------------------------------------------- /assets/plugin/css/wp-featherlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/assets/plugin/css/wp-featherlight.scss -------------------------------------------------------------------------------- /assets/plugin/js/wpFeatherlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/assets/plugin/js/wpFeatherlight.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/composer.lock -------------------------------------------------------------------------------- /config/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/config/.jshintrc -------------------------------------------------------------------------------- /config/grunt/aliases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/config/grunt/aliases.js -------------------------------------------------------------------------------- /config/grunt/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/config/grunt/concat.js -------------------------------------------------------------------------------- /config/grunt/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/config/grunt/copy.js -------------------------------------------------------------------------------- /config/grunt/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/config/grunt/replace.js -------------------------------------------------------------------------------- /config/grunt/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/config/grunt/version.js -------------------------------------------------------------------------------- /css/wp-featherlight-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/css/wp-featherlight-rtl.css -------------------------------------------------------------------------------- /css/wp-featherlight-rtl.css.map: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /css/wp-featherlight-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/css/wp-featherlight-rtl.min.css -------------------------------------------------------------------------------- /css/wp-featherlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/css/wp-featherlight.css -------------------------------------------------------------------------------- /css/wp-featherlight.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/css/wp-featherlight.min.css -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/gruntfile.js -------------------------------------------------------------------------------- /includes/class-i18n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/includes/class-i18n.php -------------------------------------------------------------------------------- /includes/class-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/includes/class-plugin.php -------------------------------------------------------------------------------- /includes/class-scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/includes/class-scripts.php -------------------------------------------------------------------------------- /includes/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/includes/constants.php -------------------------------------------------------------------------------- /js/vendor/featherlight.gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/js/vendor/featherlight.gallery.js -------------------------------------------------------------------------------- /js/vendor/featherlight.gallery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/js/vendor/featherlight.gallery.min.js -------------------------------------------------------------------------------- /js/vendor/featherlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/js/vendor/featherlight.js -------------------------------------------------------------------------------- /js/vendor/featherlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/js/vendor/featherlight.min.js -------------------------------------------------------------------------------- /js/vendor/jquery.detect_swipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/js/vendor/jquery.detect_swipe.js -------------------------------------------------------------------------------- /js/vendor/jquery.detect_swipe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/js/vendor/jquery.detect_swipe.min.js -------------------------------------------------------------------------------- /js/wpFeatherlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/js/wpFeatherlight.js -------------------------------------------------------------------------------- /js/wpFeatherlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/js/wpFeatherlight.min.js -------------------------------------------------------------------------------- /js/wpFeatherlight.pkgd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/js/wpFeatherlight.pkgd.js -------------------------------------------------------------------------------- /js/wpFeatherlight.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/js/wpFeatherlight.pkgd.min.js -------------------------------------------------------------------------------- /languages/src/wp-featherlight-es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/languages/src/wp-featherlight-es_ES.po -------------------------------------------------------------------------------- /languages/src/wp-featherlight-fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/languages/src/wp-featherlight-fr_FR.po -------------------------------------------------------------------------------- /languages/src/wp-featherlight-pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/languages/src/wp-featherlight-pt_BR.po -------------------------------------------------------------------------------- /languages/wp-featherlight-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/languages/wp-featherlight-de_DE.mo -------------------------------------------------------------------------------- /languages/wp-featherlight-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/languages/wp-featherlight-es_ES.mo -------------------------------------------------------------------------------- /languages/wp-featherlight-fr_FR .mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/languages/wp-featherlight-fr_FR .mo -------------------------------------------------------------------------------- /languages/wp-featherlight-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/languages/wp-featherlight-fr_FR.mo -------------------------------------------------------------------------------- /languages/wp-featherlight-pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/languages/wp-featherlight-pl_PL.mo -------------------------------------------------------------------------------- /languages/wp-featherlight-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/languages/wp-featherlight-pt_BR.mo -------------------------------------------------------------------------------- /languages/wp-featherlight.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/languages/wp-featherlight.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/package.json -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/readme.txt -------------------------------------------------------------------------------- /wp-featherlight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/wp-featherlight.php -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cipherdevgroup/wp-featherlight/HEAD/yarn.lock --------------------------------------------------------------------------------