├── .gitattributes ├── .gitignore ├── CNAME ├── README.md ├── assets ├── css │ └── style.css ├── img │ ├── apple-touch-icon.png │ ├── clients │ │ ├── client-1.png │ │ ├── client-2.png │ │ ├── client-3.png │ │ ├── client-4.png │ │ ├── client-5.png │ │ └── client-6.png │ ├── cta-bg.jpg │ ├── favicon.png │ ├── hero-img.png │ ├── portfolio │ │ ├── portfolio-1.jpg │ │ ├── portfolio-2.jpg │ │ ├── portfolio-3.jpg │ │ ├── portfolio-4.jpg │ │ ├── portfolio-5.jpg │ │ ├── portfolio-6.jpg │ │ ├── portfolio-7.jpg │ │ ├── portfolio-8.jpg │ │ ├── portfolio-9.jpg │ │ ├── portfolio-details-1.jpg │ │ ├── portfolio-details-2.jpg │ │ └── portfolio-details-3.jpg │ ├── skills.png │ ├── team │ │ ├── team-1.jpg │ │ ├── team-2.jpg │ │ ├── team-3.jpg │ │ └── team-4.jpg │ └── why-us.png ├── js │ └── main.js ├── scss │ └── Readme.txt └── vendor │ ├── aos │ ├── aos.css │ └── aos.js │ ├── bootstrap-icons │ ├── bootstrap-icons.css │ ├── bootstrap-icons.json │ └── fonts │ │ ├── bootstrap-icons.woff │ │ └── bootstrap-icons.woff2 │ ├── bootstrap │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── boxicons │ ├── css │ │ ├── animations.css │ │ ├── boxicons.css │ │ ├── boxicons.min.css │ │ └── transformations.css │ └── fonts │ │ ├── boxicons.eot │ │ ├── boxicons.svg │ │ ├── boxicons.ttf │ │ ├── boxicons.woff │ │ └── boxicons.woff2 │ ├── glightbox │ ├── css │ │ ├── glightbox.css │ │ ├── glightbox.min.css │ │ ├── plyr.css │ │ └── plyr.min.css │ └── js │ │ ├── glightbox.js │ │ └── glightbox.min.js │ ├── isotope-layout │ ├── isotope.pkgd.js │ └── isotope.pkgd.min.js │ ├── php-email-form │ └── validate.js │ ├── remixicon │ ├── remixicon.css │ ├── remixicon.eot │ ├── remixicon.less │ ├── remixicon.svg │ ├── remixicon.symbol.svg │ ├── remixicon.ttf │ ├── remixicon.woff │ └── remixicon.woff2 │ ├── swiper │ ├── swiper-bundle.min.css │ ├── swiper-bundle.min.js │ └── swiper-bundle.min.js.map │ └── waypoints │ └── noframework.waypoints.js ├── changelog.txt ├── forms ├── Readme.txt └── contact.php ├── index.html ├── inner-page.html └── portfolio-details.html /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-language=JavaScript 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | ethioitsupport.com -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ethioitsupport 2 | Web development company 3 | -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/img/clients/client-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/clients/client-1.png -------------------------------------------------------------------------------- /assets/img/clients/client-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/clients/client-2.png -------------------------------------------------------------------------------- /assets/img/clients/client-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/clients/client-3.png -------------------------------------------------------------------------------- /assets/img/clients/client-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/clients/client-4.png -------------------------------------------------------------------------------- /assets/img/clients/client-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/clients/client-5.png -------------------------------------------------------------------------------- /assets/img/clients/client-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/clients/client-6.png -------------------------------------------------------------------------------- /assets/img/cta-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/cta-bg.jpg -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/img/hero-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/hero-img.png -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/portfolio/portfolio-1.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/portfolio/portfolio-2.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/portfolio/portfolio-3.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/portfolio/portfolio-4.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/portfolio/portfolio-5.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/portfolio/portfolio-6.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/portfolio/portfolio-7.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/portfolio/portfolio-8.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/portfolio/portfolio-9.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-details-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/portfolio/portfolio-details-1.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-details-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/portfolio/portfolio-details-2.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-details-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/portfolio/portfolio-details-3.jpg -------------------------------------------------------------------------------- /assets/img/skills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/skills.png -------------------------------------------------------------------------------- /assets/img/team/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/team/team-1.jpg -------------------------------------------------------------------------------- /assets/img/team/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/team/team-2.jpg -------------------------------------------------------------------------------- /assets/img/team/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/team/team-3.jpg -------------------------------------------------------------------------------- /assets/img/team/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/team/team-4.jpg -------------------------------------------------------------------------------- /assets/img/why-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/img/why-us.png -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/scss/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/scss/Readme.txt -------------------------------------------------------------------------------- /assets/vendor/aos/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/aos/aos.css -------------------------------------------------------------------------------- /assets/vendor/aos/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/aos/aos.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/bootstrap-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap-icons/bootstrap-icons.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/bootstrap-icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap-icons/bootstrap-icons.json -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/js/bootstrap.esm.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /assets/vendor/boxicons/css/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/boxicons/css/animations.css -------------------------------------------------------------------------------- /assets/vendor/boxicons/css/boxicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/boxicons/css/boxicons.css -------------------------------------------------------------------------------- /assets/vendor/boxicons/css/boxicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/boxicons/css/boxicons.min.css -------------------------------------------------------------------------------- /assets/vendor/boxicons/css/transformations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/boxicons/css/transformations.css -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/boxicons/fonts/boxicons.eot -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/boxicons/fonts/boxicons.svg -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/boxicons/fonts/boxicons.ttf -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/boxicons/fonts/boxicons.woff -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/boxicons/fonts/boxicons.woff2 -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/glightbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/glightbox/css/glightbox.css -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/glightbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/glightbox/css/glightbox.min.css -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/plyr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/glightbox/css/plyr.css -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/plyr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/glightbox/css/plyr.min.css -------------------------------------------------------------------------------- /assets/vendor/glightbox/js/glightbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/glightbox/js/glightbox.js -------------------------------------------------------------------------------- /assets/vendor/glightbox/js/glightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/glightbox/js/glightbox.min.js -------------------------------------------------------------------------------- /assets/vendor/isotope-layout/isotope.pkgd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/isotope-layout/isotope.pkgd.js -------------------------------------------------------------------------------- /assets/vendor/isotope-layout/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/isotope-layout/isotope.pkgd.min.js -------------------------------------------------------------------------------- /assets/vendor/php-email-form/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/php-email-form/validate.js -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/remixicon/remixicon.css -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/remixicon/remixicon.eot -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/remixicon/remixicon.less -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/remixicon/remixicon.svg -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/remixicon/remixicon.symbol.svg -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/remixicon/remixicon.ttf -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/remixicon/remixicon.woff -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/remixicon/remixicon.woff2 -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/swiper/swiper-bundle.min.css -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/swiper/swiper-bundle.min.js -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/swiper/swiper-bundle.min.js.map -------------------------------------------------------------------------------- /assets/vendor/waypoints/noframework.waypoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/assets/vendor/waypoints/noframework.waypoints.js -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/changelog.txt -------------------------------------------------------------------------------- /forms/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/forms/Readme.txt -------------------------------------------------------------------------------- /forms/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/forms/contact.php -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/index.html -------------------------------------------------------------------------------- /inner-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/inner-page.html -------------------------------------------------------------------------------- /portfolio-details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abeltsew/ethioitsupport/HEAD/portfolio-details.html --------------------------------------------------------------------------------