├── .distignore ├── .gitignore ├── .jshintrc ├── .travis.yml ├── 404.php ├── CHANGELOG.md ├── Gruntfile.js ├── archive-download.php ├── archive.php ├── bin └── wraith.sh ├── class-tgm-plugin-activation.php ├── comments.php ├── content-archive-download.php ├── content-contact.php ├── content-none.php ├── content-page-no-title.php ├── content-page.php ├── content-search.php ├── content-single-download.php ├── content-single.php ├── content.php ├── css ├── bootstrap.min.css ├── custom-editor-style.css ├── font-awesome.css ├── font-awesome.min.css └── ielt9.css ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── stamp-icons.eot ├── stamp-icons.svg ├── stamp-icons.ttf └── stamp-icons.woff ├── footer.php ├── front-page.php ├── functions.php ├── grunt └── version.js ├── header.php ├── home.php ├── images ├── about-us.png ├── background-images │ ├── background.jpg │ ├── background_thumbnail.jpg │ └── parallax-img │ │ └── parallax-img1.jpg ├── background1.png ├── background2.png ├── clients │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── client-no-image.jpg ├── companies │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 6.png ├── gray-lines.png ├── loader-blue.gif ├── logo-2.png ├── logo-nav.png ├── no-thumbnail-latest-news.jpg ├── no-thumbnail-mobile.jpg ├── no-thumbnail.jpg ├── team │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── default.png └── tr-btn.png ├── inc ├── admin │ ├── class-remote-notification-client.php │ └── welcome-screen │ │ ├── css │ │ └── welcome.css │ │ ├── img │ │ └── ajax-loader.gif │ │ ├── js │ │ └── welcome.js │ │ ├── sections │ │ ├── changelog.php │ │ ├── free_pro.php │ │ ├── getting-started.php │ │ └── github.php │ │ └── welcome-screen.php ├── alpha-control │ ├── css │ │ └── style.css │ ├── img │ │ └── transparency-grid.png │ ├── js │ │ └── script.js │ └── parallax-one-alpha-control.php ├── class │ ├── class-ti-notify.php │ ├── parallax-one-info.php │ └── parallax-one-text-control.php ├── customizer-info │ ├── class │ │ ├── class-customizer-info-section.php │ │ └── class-singleton-customizer-info-section.php │ └── js │ │ └── customizer-info-controls.js ├── customizer-repeater │ ├── class │ │ └── customizer-repeater-control.php │ ├── css │ │ ├── admin-style.css │ │ └── fontawesome-iconpicker.min.css │ ├── functions.php │ ├── inc │ │ ├── customizer.php │ │ └── icons.php │ └── js │ │ ├── customizer_repeater.js │ │ ├── fontawesome-iconpicker.js │ │ └── fontawesome-iconpicker.min.js ├── customizer.php ├── extras.php ├── hooks.php ├── icon-picker │ ├── css │ │ ├── iconpicker.min.css │ │ └── stamp-icons.min.css │ └── js │ │ ├── iconpicker-control.js │ │ ├── iconpicker-engine.js │ │ └── iconpicker-engine.min.js ├── jetpack.php ├── template-tags.php └── translations │ ├── general.php │ ├── translations-contact-section.php │ ├── translations-footer-socials.php │ ├── translations-logos-section.php │ ├── translations-services-section.php │ ├── translations-team-section.php │ └── translations-testimonials-section.php ├── index.php ├── js ├── bootstrap.js ├── bootstrap.min.js ├── custom.all.js ├── custom.home.js ├── customizer.js ├── html5shiv.js ├── html5shiv.min.js ├── parallax_one_customizer.js ├── plugin.home.js ├── scrollReveal.js └── skip-link-focus-fix.js ├── languages ├── fr_FR.mo ├── fr_FR.po ├── parallax-one.pot ├── pl_PL.mo ├── pl_PL.po ├── pt_BR.mo ├── pt_BR.po ├── ru_RU.mo └── ru_RU.po ├── package.json ├── page.php ├── phpcs.xml ├── readme.md ├── rtl.css ├── screenshot.png ├── search.php ├── sections ├── parallax_one_contact_info_section.php ├── parallax_one_happy_customers_section.php ├── parallax_one_header_section.php ├── parallax_one_latest_news_section.php ├── parallax_one_logos_section.php ├── parallax_one_map_section.php ├── parallax_one_our_services_section.php ├── parallax_one_our_story_section.php ├── parallax_one_our_team_section.php └── parallax_one_ribbon_section.php ├── sidebar.php ├── single-download.php ├── single.php ├── style.css ├── template-blog.php ├── template-contact.php ├── template-fullwidth-no-title.php ├── template-fullwidth.php └── wpml-config.xml /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/.distignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/.travis.yml -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/404.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /archive-download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/archive-download.php -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/archive.php -------------------------------------------------------------------------------- /bin/wraith.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/bin/wraith.sh -------------------------------------------------------------------------------- /class-tgm-plugin-activation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/class-tgm-plugin-activation.php -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/comments.php -------------------------------------------------------------------------------- /content-archive-download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/content-archive-download.php -------------------------------------------------------------------------------- /content-contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/content-contact.php -------------------------------------------------------------------------------- /content-none.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/content-none.php -------------------------------------------------------------------------------- /content-page-no-title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/content-page-no-title.php -------------------------------------------------------------------------------- /content-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/content-page.php -------------------------------------------------------------------------------- /content-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/content-search.php -------------------------------------------------------------------------------- /content-single-download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/content-single-download.php -------------------------------------------------------------------------------- /content-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/content-single.php -------------------------------------------------------------------------------- /content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/content.php -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/custom-editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/css/custom-editor-style.css -------------------------------------------------------------------------------- /css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/css/font-awesome.css -------------------------------------------------------------------------------- /css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/css/font-awesome.min.css -------------------------------------------------------------------------------- /css/ielt9.css: -------------------------------------------------------------------------------- 1 | .preloader { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /fonts/stamp-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/fonts/stamp-icons.eot -------------------------------------------------------------------------------- /fonts/stamp-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/fonts/stamp-icons.svg -------------------------------------------------------------------------------- /fonts/stamp-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/fonts/stamp-icons.ttf -------------------------------------------------------------------------------- /fonts/stamp-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/fonts/stamp-icons.woff -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/footer.php -------------------------------------------------------------------------------- /front-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/front-page.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/functions.php -------------------------------------------------------------------------------- /grunt/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/grunt/version.js -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/header.php -------------------------------------------------------------------------------- /home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/home.php -------------------------------------------------------------------------------- /images/about-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/about-us.png -------------------------------------------------------------------------------- /images/background-images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/background-images/background.jpg -------------------------------------------------------------------------------- /images/background-images/background_thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/background-images/background_thumbnail.jpg -------------------------------------------------------------------------------- /images/background-images/parallax-img/parallax-img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/background-images/parallax-img/parallax-img1.jpg -------------------------------------------------------------------------------- /images/background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/background1.png -------------------------------------------------------------------------------- /images/background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/background2.png -------------------------------------------------------------------------------- /images/clients/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/clients/1.jpg -------------------------------------------------------------------------------- /images/clients/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/clients/2.jpg -------------------------------------------------------------------------------- /images/clients/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/clients/3.jpg -------------------------------------------------------------------------------- /images/clients/client-no-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/clients/client-no-image.jpg -------------------------------------------------------------------------------- /images/companies/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/companies/1.png -------------------------------------------------------------------------------- /images/companies/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/companies/2.png -------------------------------------------------------------------------------- /images/companies/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/companies/3.png -------------------------------------------------------------------------------- /images/companies/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/companies/4.png -------------------------------------------------------------------------------- /images/companies/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/companies/5.png -------------------------------------------------------------------------------- /images/companies/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/companies/6.png -------------------------------------------------------------------------------- /images/gray-lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/gray-lines.png -------------------------------------------------------------------------------- /images/loader-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/loader-blue.gif -------------------------------------------------------------------------------- /images/logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/logo-2.png -------------------------------------------------------------------------------- /images/logo-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/logo-nav.png -------------------------------------------------------------------------------- /images/no-thumbnail-latest-news.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/no-thumbnail-latest-news.jpg -------------------------------------------------------------------------------- /images/no-thumbnail-mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/no-thumbnail-mobile.jpg -------------------------------------------------------------------------------- /images/no-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/no-thumbnail.jpg -------------------------------------------------------------------------------- /images/team/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/team/1.jpg -------------------------------------------------------------------------------- /images/team/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/team/2.jpg -------------------------------------------------------------------------------- /images/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/team/3.jpg -------------------------------------------------------------------------------- /images/team/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/team/default.png -------------------------------------------------------------------------------- /images/tr-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/images/tr-btn.png -------------------------------------------------------------------------------- /inc/admin/class-remote-notification-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/admin/class-remote-notification-client.php -------------------------------------------------------------------------------- /inc/admin/welcome-screen/css/welcome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/admin/welcome-screen/css/welcome.css -------------------------------------------------------------------------------- /inc/admin/welcome-screen/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/admin/welcome-screen/img/ajax-loader.gif -------------------------------------------------------------------------------- /inc/admin/welcome-screen/js/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/admin/welcome-screen/js/welcome.js -------------------------------------------------------------------------------- /inc/admin/welcome-screen/sections/changelog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/admin/welcome-screen/sections/changelog.php -------------------------------------------------------------------------------- /inc/admin/welcome-screen/sections/free_pro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/admin/welcome-screen/sections/free_pro.php -------------------------------------------------------------------------------- /inc/admin/welcome-screen/sections/getting-started.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/admin/welcome-screen/sections/getting-started.php -------------------------------------------------------------------------------- /inc/admin/welcome-screen/sections/github.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/admin/welcome-screen/sections/github.php -------------------------------------------------------------------------------- /inc/admin/welcome-screen/welcome-screen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/admin/welcome-screen/welcome-screen.php -------------------------------------------------------------------------------- /inc/alpha-control/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/alpha-control/css/style.css -------------------------------------------------------------------------------- /inc/alpha-control/img/transparency-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/alpha-control/img/transparency-grid.png -------------------------------------------------------------------------------- /inc/alpha-control/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/alpha-control/js/script.js -------------------------------------------------------------------------------- /inc/alpha-control/parallax-one-alpha-control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/alpha-control/parallax-one-alpha-control.php -------------------------------------------------------------------------------- /inc/class/class-ti-notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/class/class-ti-notify.php -------------------------------------------------------------------------------- /inc/class/parallax-one-info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/class/parallax-one-info.php -------------------------------------------------------------------------------- /inc/class/parallax-one-text-control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/class/parallax-one-text-control.php -------------------------------------------------------------------------------- /inc/customizer-info/class/class-customizer-info-section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer-info/class/class-customizer-info-section.php -------------------------------------------------------------------------------- /inc/customizer-info/class/class-singleton-customizer-info-section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer-info/class/class-singleton-customizer-info-section.php -------------------------------------------------------------------------------- /inc/customizer-info/js/customizer-info-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer-info/js/customizer-info-controls.js -------------------------------------------------------------------------------- /inc/customizer-repeater/class/customizer-repeater-control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer-repeater/class/customizer-repeater-control.php -------------------------------------------------------------------------------- /inc/customizer-repeater/css/admin-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer-repeater/css/admin-style.css -------------------------------------------------------------------------------- /inc/customizer-repeater/css/fontawesome-iconpicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer-repeater/css/fontawesome-iconpicker.min.css -------------------------------------------------------------------------------- /inc/customizer-repeater/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer-repeater/functions.php -------------------------------------------------------------------------------- /inc/customizer-repeater/inc/customizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer-repeater/inc/customizer.php -------------------------------------------------------------------------------- /inc/customizer-repeater/inc/icons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer-repeater/inc/icons.php -------------------------------------------------------------------------------- /inc/customizer-repeater/js/customizer_repeater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer-repeater/js/customizer_repeater.js -------------------------------------------------------------------------------- /inc/customizer-repeater/js/fontawesome-iconpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer-repeater/js/fontawesome-iconpicker.js -------------------------------------------------------------------------------- /inc/customizer-repeater/js/fontawesome-iconpicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer-repeater/js/fontawesome-iconpicker.min.js -------------------------------------------------------------------------------- /inc/customizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/customizer.php -------------------------------------------------------------------------------- /inc/extras.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/extras.php -------------------------------------------------------------------------------- /inc/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/hooks.php -------------------------------------------------------------------------------- /inc/icon-picker/css/iconpicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/icon-picker/css/iconpicker.min.css -------------------------------------------------------------------------------- /inc/icon-picker/css/stamp-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/icon-picker/css/stamp-icons.min.css -------------------------------------------------------------------------------- /inc/icon-picker/js/iconpicker-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/icon-picker/js/iconpicker-control.js -------------------------------------------------------------------------------- /inc/icon-picker/js/iconpicker-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/icon-picker/js/iconpicker-engine.js -------------------------------------------------------------------------------- /inc/icon-picker/js/iconpicker-engine.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/icon-picker/js/iconpicker-engine.min.js -------------------------------------------------------------------------------- /inc/jetpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/jetpack.php -------------------------------------------------------------------------------- /inc/template-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/template-tags.php -------------------------------------------------------------------------------- /inc/translations/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/translations/general.php -------------------------------------------------------------------------------- /inc/translations/translations-contact-section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/translations/translations-contact-section.php -------------------------------------------------------------------------------- /inc/translations/translations-footer-socials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/translations/translations-footer-socials.php -------------------------------------------------------------------------------- /inc/translations/translations-logos-section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/translations/translations-logos-section.php -------------------------------------------------------------------------------- /inc/translations/translations-services-section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/translations/translations-services-section.php -------------------------------------------------------------------------------- /inc/translations/translations-team-section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/translations/translations-team-section.php -------------------------------------------------------------------------------- /inc/translations/translations-testimonials-section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/inc/translations/translations-testimonials-section.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/index.php -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/custom.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/js/custom.all.js -------------------------------------------------------------------------------- /js/custom.home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/js/custom.home.js -------------------------------------------------------------------------------- /js/customizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/js/customizer.js -------------------------------------------------------------------------------- /js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/js/html5shiv.js -------------------------------------------------------------------------------- /js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/js/html5shiv.min.js -------------------------------------------------------------------------------- /js/parallax_one_customizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/js/parallax_one_customizer.js -------------------------------------------------------------------------------- /js/plugin.home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/js/plugin.home.js -------------------------------------------------------------------------------- /js/scrollReveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/js/scrollReveal.js -------------------------------------------------------------------------------- /js/skip-link-focus-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/js/skip-link-focus-fix.js -------------------------------------------------------------------------------- /languages/fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/languages/fr_FR.mo -------------------------------------------------------------------------------- /languages/fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/languages/fr_FR.po -------------------------------------------------------------------------------- /languages/parallax-one.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/languages/parallax-one.pot -------------------------------------------------------------------------------- /languages/pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/languages/pl_PL.mo -------------------------------------------------------------------------------- /languages/pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/languages/pl_PL.po -------------------------------------------------------------------------------- /languages/pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/languages/pt_BR.mo -------------------------------------------------------------------------------- /languages/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/languages/pt_BR.po -------------------------------------------------------------------------------- /languages/ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/languages/ru_RU.mo -------------------------------------------------------------------------------- /languages/ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/languages/ru_RU.po -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/package.json -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/page.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/phpcs.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/readme.md -------------------------------------------------------------------------------- /rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/rtl.css -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/screenshot.png -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/search.php -------------------------------------------------------------------------------- /sections/parallax_one_contact_info_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/sections/parallax_one_contact_info_section.php -------------------------------------------------------------------------------- /sections/parallax_one_happy_customers_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/sections/parallax_one_happy_customers_section.php -------------------------------------------------------------------------------- /sections/parallax_one_header_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/sections/parallax_one_header_section.php -------------------------------------------------------------------------------- /sections/parallax_one_latest_news_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/sections/parallax_one_latest_news_section.php -------------------------------------------------------------------------------- /sections/parallax_one_logos_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/sections/parallax_one_logos_section.php -------------------------------------------------------------------------------- /sections/parallax_one_map_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/sections/parallax_one_map_section.php -------------------------------------------------------------------------------- /sections/parallax_one_our_services_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/sections/parallax_one_our_services_section.php -------------------------------------------------------------------------------- /sections/parallax_one_our_story_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/sections/parallax_one_our_story_section.php -------------------------------------------------------------------------------- /sections/parallax_one_our_team_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/sections/parallax_one_our_team_section.php -------------------------------------------------------------------------------- /sections/parallax_one_ribbon_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/sections/parallax_one_ribbon_section.php -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/sidebar.php -------------------------------------------------------------------------------- /single-download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/single-download.php -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/single.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/style.css -------------------------------------------------------------------------------- /template-blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/template-blog.php -------------------------------------------------------------------------------- /template-contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/template-contact.php -------------------------------------------------------------------------------- /template-fullwidth-no-title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/template-fullwidth-no-title.php -------------------------------------------------------------------------------- /template-fullwidth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/template-fullwidth.php -------------------------------------------------------------------------------- /wpml-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeinwp/Parallax-One/HEAD/wpml-config.xml --------------------------------------------------------------------------------