├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── app ├── Autoloader.php ├── location │ ├── AdressManager.php │ ├── Location.php │ └── maps │ │ └── google-maps-api.js ├── maths │ ├── Serializer.php │ └── UID.php ├── network │ ├── SQLSession.php │ ├── cookie │ │ └── cookie-manager.js │ └── setup.sql ├── router │ └── RouteAccess.php ├── spot │ ├── Spot.php │ ├── SpotManager.php │ ├── TieredSpot.php │ └── favorites │ │ └── fav-manager.js ├── style │ └── Render.php └── utils │ ├── Loader.php │ ├── PathCreator.php │ └── Utils.php ├── image ├── close.png ├── footer_logo.png ├── icon.ico ├── location │ ├── england │ │ └── london │ │ │ └── imax-gap │ │ │ ├── 135f3db9008d69406b7b8e5849880831.jpg │ │ │ ├── 693abeb96ab76f9ed9565dde0e5688ad.jpg │ │ │ └── cover.jpg │ ├── france │ │ ├── evry │ │ │ ├── evry-&-lisses │ │ │ │ ├── 101705748_689978438458960_8220808230454084660_n.jpg │ │ │ │ ├── 102970503_1260506640824721_8904681818824439323_n.jpg │ │ │ │ ├── IMG_2301-640x480.jpg │ │ │ │ └── cover.jpg │ │ │ └── manpower-gap │ │ │ │ ├── IMG_3410-1350x900.jpg │ │ │ │ ├── cover.jpg │ │ │ │ ├── khgvjyftc.jpg │ │ │ │ ├── medhi-manpower-gap-evry.jpg │ │ │ │ └── yrtdrtyd.jpg │ │ ├── ile-de-re │ │ │ └── ancien-embarcadere │ │ │ │ ├── 17645527135_80ac1d1d59_b.jpg │ │ │ │ ├── 3592319105_35154ccb67_b.jpg │ │ │ │ └── cover.jpg │ │ └── paris │ │ │ ├── la-defense │ │ │ ├── cover.jpg │ │ │ ├── jbghvghv.jpg │ │ │ ├── jgbv ghv.jpg │ │ │ ├── ld_601ffaf04a0e8_0.jpg │ │ │ └── quartier-la-defense-paris-les-constructions-en-cours-e1564159223446.jpg │ │ │ └── olympiades │ │ │ ├── cover.jpg │ │ │ ├── download.jpg │ │ │ ├── olympiades-paris-13-quartier-12.jpg │ │ │ └── olympiades-paris-13-quartier.jpg │ └── united-states │ │ ├── new-york │ │ ├── cadman-plaza-w │ │ │ ├── 20211226_114357.jpg │ │ │ ├── 20211226_114400.jpg │ │ │ ├── 20211226_114405.jpg │ │ │ ├── 20211226_114409.jpg │ │ │ └── 20211226_114429.jpg │ │ └── central-park │ │ │ ├── Parkour-6.jpg │ │ │ ├── cover.jpg │ │ │ └── maxresdefault.jpg │ │ └── seattle │ │ └── freeway-park │ │ ├── P8F_ujatzn_c_scale,w_1600.jpg │ │ ├── Seattle_Freeway_Park_24.jpg │ │ ├── WA_Seattle_FreewayPark_byAaronLeitz_2016_003_sig_0.jpg │ │ └── cover.jpg ├── logo.png └── main_banner.jpg ├── index.php ├── memo.txt ├── style ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── datepicker.css │ ├── fontAwesome.css │ ├── fonts │ │ ├── flexslider-icon.eot │ │ ├── flexslider-icon.svg │ │ ├── flexslider-icon.ttf │ │ └── flexslider-icon.woff │ ├── hero-slider.css │ ├── main-style.css │ └── owl-carousel.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── js │ ├── datepicker.js │ ├── main.js │ ├── plugins.js │ └── vendor │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.11.2.min.js │ ├── modernizr-2.8.3-respond-1.4.2.min.js │ └── npm.js ├── test-file.php ├── vendor └── zephyr │ ├── .gitignore │ ├── README.md │ ├── app.php │ ├── src │ ├── controller │ │ └── Controller.php │ ├── router │ │ ├── Router.php │ │ ├── RouterInterface.php │ │ └── route │ │ │ ├── Route.php │ │ │ └── RouteCollector.php │ └── standard │ │ └── StandardMethods.php │ └── test │ └── demo.php └── view ├── favorites.view.php ├── home.view.php ├── location └── spot.view.php ├── part ├── footer.part.php └── nav.part.php └── search.view.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/README.md -------------------------------------------------------------------------------- /app/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/Autoloader.php -------------------------------------------------------------------------------- /app/location/AdressManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/location/AdressManager.php -------------------------------------------------------------------------------- /app/location/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/location/Location.php -------------------------------------------------------------------------------- /app/location/maps/google-maps-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/location/maps/google-maps-api.js -------------------------------------------------------------------------------- /app/maths/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/maths/Serializer.php -------------------------------------------------------------------------------- /app/maths/UID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/maths/UID.php -------------------------------------------------------------------------------- /app/network/SQLSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/network/SQLSession.php -------------------------------------------------------------------------------- /app/network/cookie/cookie-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/network/cookie/cookie-manager.js -------------------------------------------------------------------------------- /app/network/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/network/setup.sql -------------------------------------------------------------------------------- /app/router/RouteAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/router/RouteAccess.php -------------------------------------------------------------------------------- /app/spot/Spot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/spot/Spot.php -------------------------------------------------------------------------------- /app/spot/SpotManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/spot/SpotManager.php -------------------------------------------------------------------------------- /app/spot/TieredSpot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/spot/TieredSpot.php -------------------------------------------------------------------------------- /app/spot/favorites/fav-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/spot/favorites/fav-manager.js -------------------------------------------------------------------------------- /app/style/Render.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/style/Render.php -------------------------------------------------------------------------------- /app/utils/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/utils/Loader.php -------------------------------------------------------------------------------- /app/utils/PathCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/utils/PathCreator.php -------------------------------------------------------------------------------- /app/utils/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/app/utils/Utils.php -------------------------------------------------------------------------------- /image/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/close.png -------------------------------------------------------------------------------- /image/footer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/footer_logo.png -------------------------------------------------------------------------------- /image/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/icon.ico -------------------------------------------------------------------------------- /image/location/england/london/imax-gap/135f3db9008d69406b7b8e5849880831.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/england/london/imax-gap/135f3db9008d69406b7b8e5849880831.jpg -------------------------------------------------------------------------------- /image/location/england/london/imax-gap/693abeb96ab76f9ed9565dde0e5688ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/england/london/imax-gap/693abeb96ab76f9ed9565dde0e5688ad.jpg -------------------------------------------------------------------------------- /image/location/england/london/imax-gap/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/england/london/imax-gap/cover.jpg -------------------------------------------------------------------------------- /image/location/france/evry/evry-&-lisses/101705748_689978438458960_8220808230454084660_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/evry/evry-&-lisses/101705748_689978438458960_8220808230454084660_n.jpg -------------------------------------------------------------------------------- /image/location/france/evry/evry-&-lisses/102970503_1260506640824721_8904681818824439323_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/evry/evry-&-lisses/102970503_1260506640824721_8904681818824439323_n.jpg -------------------------------------------------------------------------------- /image/location/france/evry/evry-&-lisses/IMG_2301-640x480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/evry/evry-&-lisses/IMG_2301-640x480.jpg -------------------------------------------------------------------------------- /image/location/france/evry/evry-&-lisses/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/evry/evry-&-lisses/cover.jpg -------------------------------------------------------------------------------- /image/location/france/evry/manpower-gap/IMG_3410-1350x900.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/evry/manpower-gap/IMG_3410-1350x900.jpg -------------------------------------------------------------------------------- /image/location/france/evry/manpower-gap/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/evry/manpower-gap/cover.jpg -------------------------------------------------------------------------------- /image/location/france/evry/manpower-gap/khgvjyftc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/evry/manpower-gap/khgvjyftc.jpg -------------------------------------------------------------------------------- /image/location/france/evry/manpower-gap/medhi-manpower-gap-evry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/evry/manpower-gap/medhi-manpower-gap-evry.jpg -------------------------------------------------------------------------------- /image/location/france/evry/manpower-gap/yrtdrtyd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/evry/manpower-gap/yrtdrtyd.jpg -------------------------------------------------------------------------------- /image/location/france/ile-de-re/ancien-embarcadere/17645527135_80ac1d1d59_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/ile-de-re/ancien-embarcadere/17645527135_80ac1d1d59_b.jpg -------------------------------------------------------------------------------- /image/location/france/ile-de-re/ancien-embarcadere/3592319105_35154ccb67_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/ile-de-re/ancien-embarcadere/3592319105_35154ccb67_b.jpg -------------------------------------------------------------------------------- /image/location/france/ile-de-re/ancien-embarcadere/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/ile-de-re/ancien-embarcadere/cover.jpg -------------------------------------------------------------------------------- /image/location/france/paris/la-defense/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/paris/la-defense/cover.jpg -------------------------------------------------------------------------------- /image/location/france/paris/la-defense/jbghvghv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/paris/la-defense/jbghvghv.jpg -------------------------------------------------------------------------------- /image/location/france/paris/la-defense/jgbv ghv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/paris/la-defense/jgbv ghv.jpg -------------------------------------------------------------------------------- /image/location/france/paris/la-defense/ld_601ffaf04a0e8_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/paris/la-defense/ld_601ffaf04a0e8_0.jpg -------------------------------------------------------------------------------- /image/location/france/paris/la-defense/quartier-la-defense-paris-les-constructions-en-cours-e1564159223446.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/paris/la-defense/quartier-la-defense-paris-les-constructions-en-cours-e1564159223446.jpg -------------------------------------------------------------------------------- /image/location/france/paris/olympiades/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/paris/olympiades/cover.jpg -------------------------------------------------------------------------------- /image/location/france/paris/olympiades/download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/paris/olympiades/download.jpg -------------------------------------------------------------------------------- /image/location/france/paris/olympiades/olympiades-paris-13-quartier-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/paris/olympiades/olympiades-paris-13-quartier-12.jpg -------------------------------------------------------------------------------- /image/location/france/paris/olympiades/olympiades-paris-13-quartier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/france/paris/olympiades/olympiades-paris-13-quartier.jpg -------------------------------------------------------------------------------- /image/location/united-states/new-york/cadman-plaza-w/20211226_114357.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/united-states/new-york/cadman-plaza-w/20211226_114357.jpg -------------------------------------------------------------------------------- /image/location/united-states/new-york/cadman-plaza-w/20211226_114400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/united-states/new-york/cadman-plaza-w/20211226_114400.jpg -------------------------------------------------------------------------------- /image/location/united-states/new-york/cadman-plaza-w/20211226_114405.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/united-states/new-york/cadman-plaza-w/20211226_114405.jpg -------------------------------------------------------------------------------- /image/location/united-states/new-york/cadman-plaza-w/20211226_114409.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/united-states/new-york/cadman-plaza-w/20211226_114409.jpg -------------------------------------------------------------------------------- /image/location/united-states/new-york/cadman-plaza-w/20211226_114429.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/united-states/new-york/cadman-plaza-w/20211226_114429.jpg -------------------------------------------------------------------------------- /image/location/united-states/new-york/central-park/Parkour-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/united-states/new-york/central-park/Parkour-6.jpg -------------------------------------------------------------------------------- /image/location/united-states/new-york/central-park/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/united-states/new-york/central-park/cover.jpg -------------------------------------------------------------------------------- /image/location/united-states/new-york/central-park/maxresdefault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/united-states/new-york/central-park/maxresdefault.jpg -------------------------------------------------------------------------------- /image/location/united-states/seattle/freeway-park/P8F_ujatzn_c_scale,w_1600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/united-states/seattle/freeway-park/P8F_ujatzn_c_scale,w_1600.jpg -------------------------------------------------------------------------------- /image/location/united-states/seattle/freeway-park/Seattle_Freeway_Park_24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/united-states/seattle/freeway-park/Seattle_Freeway_Park_24.jpg -------------------------------------------------------------------------------- /image/location/united-states/seattle/freeway-park/WA_Seattle_FreewayPark_byAaronLeitz_2016_003_sig_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/united-states/seattle/freeway-park/WA_Seattle_FreewayPark_byAaronLeitz_2016_003_sig_0.jpg -------------------------------------------------------------------------------- /image/location/united-states/seattle/freeway-park/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/location/united-states/seattle/freeway-park/cover.jpg -------------------------------------------------------------------------------- /image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/logo.png -------------------------------------------------------------------------------- /image/main_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/image/main_banner.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/index.php -------------------------------------------------------------------------------- /memo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/memo.txt -------------------------------------------------------------------------------- /style/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/bootstrap-theme.css -------------------------------------------------------------------------------- /style/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /style/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /style/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/bootstrap.css -------------------------------------------------------------------------------- /style/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/bootstrap.css.map -------------------------------------------------------------------------------- /style/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/bootstrap.min.css -------------------------------------------------------------------------------- /style/css/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/datepicker.css -------------------------------------------------------------------------------- /style/css/fontAwesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/fontAwesome.css -------------------------------------------------------------------------------- /style/css/fonts/flexslider-icon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/fonts/flexslider-icon.eot -------------------------------------------------------------------------------- /style/css/fonts/flexslider-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/fonts/flexslider-icon.svg -------------------------------------------------------------------------------- /style/css/fonts/flexslider-icon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/fonts/flexslider-icon.ttf -------------------------------------------------------------------------------- /style/css/fonts/flexslider-icon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/fonts/flexslider-icon.woff -------------------------------------------------------------------------------- /style/css/hero-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/hero-slider.css -------------------------------------------------------------------------------- /style/css/main-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/main-style.css -------------------------------------------------------------------------------- /style/css/owl-carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/css/owl-carousel.css -------------------------------------------------------------------------------- /style/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /style/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /style/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /style/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /style/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /style/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /style/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /style/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /style/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /style/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /style/js/datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/js/datepicker.js -------------------------------------------------------------------------------- /style/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/js/main.js -------------------------------------------------------------------------------- /style/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/js/plugins.js -------------------------------------------------------------------------------- /style/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /style/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /style/js/vendor/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/js/vendor/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /style/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/js/vendor/modernizr-2.8.3-respond-1.4.2.min.js -------------------------------------------------------------------------------- /style/js/vendor/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/style/js/vendor/npm.js -------------------------------------------------------------------------------- /test-file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/test-file.php -------------------------------------------------------------------------------- /vendor/zephyr/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /vendor/zephyr/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/zephyr/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/vendor/zephyr/app.php -------------------------------------------------------------------------------- /vendor/zephyr/src/controller/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/vendor/zephyr/src/controller/Controller.php -------------------------------------------------------------------------------- /vendor/zephyr/src/router/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/vendor/zephyr/src/router/Router.php -------------------------------------------------------------------------------- /vendor/zephyr/src/router/RouterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/vendor/zephyr/src/router/RouterInterface.php -------------------------------------------------------------------------------- /vendor/zephyr/src/router/route/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/vendor/zephyr/src/router/route/Route.php -------------------------------------------------------------------------------- /vendor/zephyr/src/router/route/RouteCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/vendor/zephyr/src/router/route/RouteCollector.php -------------------------------------------------------------------------------- /vendor/zephyr/src/standard/StandardMethods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/vendor/zephyr/src/standard/StandardMethods.php -------------------------------------------------------------------------------- /vendor/zephyr/test/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/vendor/zephyr/test/demo.php -------------------------------------------------------------------------------- /view/favorites.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/view/favorites.view.php -------------------------------------------------------------------------------- /view/home.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/view/home.view.php -------------------------------------------------------------------------------- /view/location/spot.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/view/location/spot.view.php -------------------------------------------------------------------------------- /view/part/footer.part.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/view/part/footer.part.php -------------------------------------------------------------------------------- /view/part/nav.part.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/view/part/nav.part.php -------------------------------------------------------------------------------- /view/search.view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dawnl3ss/Lets-Freerun/HEAD/view/search.view.php --------------------------------------------------------------------------------