gitextract_8vakf7bq/ ├── .gitattributes ├── .gitignore ├── README.md ├── app/ │ ├── app.js │ ├── common/ │ │ ├── app.html │ │ ├── appCtrl.js │ │ └── config.js │ ├── factory/ │ │ └── apiCall.js │ ├── modules/ │ │ ├── dashboard/ │ │ │ ├── controllers/ │ │ │ │ ├── about.js │ │ │ │ ├── achievements.js │ │ │ │ ├── contact.js │ │ │ │ ├── education.js │ │ │ │ ├── experience.js │ │ │ │ ├── gallery.js │ │ │ │ ├── home.js │ │ │ │ ├── portfolio.js │ │ │ │ ├── recent.js │ │ │ │ ├── skills.js │ │ │ │ └── websites.js │ │ │ ├── dashboardApplication.js │ │ │ ├── dashboardService.js │ │ │ ├── index.html │ │ │ └── views/ │ │ │ ├── about.html │ │ │ ├── achievements.html │ │ │ ├── contact.html │ │ │ ├── contact.php │ │ │ ├── education.html │ │ │ ├── experience.html │ │ │ ├── gallery.html │ │ │ ├── home.html │ │ │ ├── portfolio.html │ │ │ ├── recent.html │ │ │ ├── search.html │ │ │ ├── skills.html │ │ │ └── websites.html │ │ └── login/ │ │ ├── index.html │ │ ├── loginCtrl.js │ │ ├── loginMgmt.js │ │ └── loginService.js │ └── services/ │ └── apiService.js ├── contact.php ├── css/ │ ├── _all-skins.css │ ├── bootstrap.css │ ├── dashboard.css │ ├── flexslider.css │ ├── site.css │ ├── style.css │ └── themes.css ├── fonts/ │ ├── FontAwesome.otf │ └── glyphicons-halflings-regular.otf ├── index.html ├── js/ │ ├── angular-flash.js │ ├── angular-resource.js │ ├── angular-sanitize.js │ ├── angular-translate-loader-partial.js │ └── angular-ui-router-min.js └── plugins/ ├── bootstrap-slider/ │ ├── bootstrap-slider.js │ └── slider.css ├── jquery.flexisel.js ├── knob/ │ └── jquery.knob.js └── owl-carousel/ ├── owl.carousel.css ├── owl.carousel.js ├── owl.theme.css └── owl.transitions.css