├── 3.1-setting-up-the-basic-html-structure ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ └── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest └── index.html ├── 3.2-add-stylesheet-with-starter-styles ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ └── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest └── index.html ├── 3.3-google-fonts ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ └── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest └── index.html ├── 3.4-creating-the-header ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ └── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest └── index.html ├── 3.5a-styling-the-header-for-mobile ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ └── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest └── index.html ├── 3.5b-toggling-a-dropdown-menu ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ └── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest └── index.html ├── 3.6-making-the-header-responsive ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ └── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest └── index.html ├── 3.7-creating-the-footer ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ └── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest └── index.html ├── 3.8-creating-the-other-pages ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ └── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest ├── gallery.html ├── index.html └── signup.html ├── 5.1a-adding-the-hero-image ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ ├── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ └── images │ │ └── hero-image.webp ├── gallery.html ├── index.html └── signup.html ├── 5.1b-adding-the-cover-text-on-the-hero-image ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ ├── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ └── images │ │ └── hero-image.webp ├── gallery.html ├── index.html └── signup.html ├── 5.2a-adding-the-reasons-section ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ ├── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ └── images │ │ └── hero-image.webp ├── gallery.html ├── index.html └── signup.html ├── 5.2b-making-the-reasons-section-responsive ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ ├── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ └── images │ │ ├── hero-image.webp │ │ └── reasons-image.webp ├── gallery.html ├── index.html └── signup.html ├── 5.3-meetup-times ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ ├── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ └── images │ │ ├── dublin-city.webp │ │ ├── hero-image.webp │ │ └── reasons-image.webp ├── gallery.html ├── index.html └── signup.html ├── 6.1-lets-add-some-images ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ ├── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ └── images │ │ ├── athletes.webp │ │ ├── dublin-city.webp │ │ ├── girls.webp │ │ ├── hero-image.webp │ │ ├── man.webp │ │ ├── mud-run.webp │ │ ├── reasons-image.webp │ │ ├── runner1.webp │ │ ├── runner2.webp │ │ ├── runner3.webp │ │ ├── runner4.webp │ │ └── running_gang.webp ├── gallery.html ├── index.html └── signup.html ├── 7.1-creating-the-form ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ ├── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ └── images │ │ ├── athletes.webp │ │ ├── dublin-city.webp │ │ ├── girls.webp │ │ ├── hero-image.webp │ │ ├── man.webp │ │ ├── mud-run.webp │ │ ├── reasons-image.webp │ │ ├── runner1.webp │ │ ├── runner2.webp │ │ ├── runner3.webp │ │ ├── runner4.webp │ │ └── running_gang.webp ├── gallery.html ├── index.html └── signup.html ├── 7.2-styling-the-form ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ ├── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ └── images │ │ ├── athletes.webp │ │ ├── dublin-city.webp │ │ ├── girls.webp │ │ ├── hero-image.webp │ │ ├── man.webp │ │ ├── mud-run.webp │ │ ├── reasons-image.webp │ │ ├── runner1.webp │ │ ├── runner2.webp │ │ ├── runner3.webp │ │ ├── runner4.webp │ │ ├── running_gang.webp │ │ └── signup-image.webp ├── gallery.html ├── index.html └── signup.html ├── 8.1-testing-and-validation ├── .devcontainer │ ├── Dockerfile │ ├── build-assets │ │ ├── heroku_config.sh │ │ └── make_url.py │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitignore ├── .theia │ └── settings.json ├── README.md ├── assets │ ├── css │ │ └── style.css │ ├── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ └── images │ │ ├── athletes.webp │ │ ├── dublin-city.webp │ │ ├── girls.webp │ │ ├── hero-image.webp │ │ ├── man.webp │ │ ├── mud-run.webp │ │ ├── reasons-image copy.webp │ │ ├── reasons-image.webp │ │ ├── runner1.webp │ │ ├── runner2.webp │ │ ├── runner3.webp │ │ ├── runner4.webp │ │ ├── running_gang.webp │ │ └── signup-image.webp ├── gallery.html ├── index.html └── signup.html └── README.md /3.1-setting-up-the-basic-html-structure/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/.gitignore -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/.theia/settings.json -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/README.md -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/assets/favicon/about.txt -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /3.1-setting-up-the-basic-html-structure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.1-setting-up-the-basic-html-structure/index.html -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/.gitignore -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/.theia/settings.json -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/README.md -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/assets/css/style.css -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/assets/favicon/about.txt -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /3.2-add-stylesheet-with-starter-styles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.2-add-stylesheet-with-starter-styles/index.html -------------------------------------------------------------------------------- /3.3-google-fonts/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /3.3-google-fonts/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /3.3-google-fonts/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /3.3-google-fonts/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /3.3-google-fonts/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /3.3-google-fonts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/.gitignore -------------------------------------------------------------------------------- /3.3-google-fonts/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/.theia/settings.json -------------------------------------------------------------------------------- /3.3-google-fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/README.md -------------------------------------------------------------------------------- /3.3-google-fonts/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/assets/css/style.css -------------------------------------------------------------------------------- /3.3-google-fonts/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/assets/favicon/about.txt -------------------------------------------------------------------------------- /3.3-google-fonts/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /3.3-google-fonts/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /3.3-google-fonts/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /3.3-google-fonts/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /3.3-google-fonts/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /3.3-google-fonts/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /3.3-google-fonts/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /3.3-google-fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.3-google-fonts/index.html -------------------------------------------------------------------------------- /3.4-creating-the-header/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /3.4-creating-the-header/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /3.4-creating-the-header/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /3.4-creating-the-header/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /3.4-creating-the-header/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /3.4-creating-the-header/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/.gitignore -------------------------------------------------------------------------------- /3.4-creating-the-header/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/.theia/settings.json -------------------------------------------------------------------------------- /3.4-creating-the-header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/README.md -------------------------------------------------------------------------------- /3.4-creating-the-header/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/assets/css/style.css -------------------------------------------------------------------------------- /3.4-creating-the-header/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/assets/favicon/about.txt -------------------------------------------------------------------------------- /3.4-creating-the-header/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /3.4-creating-the-header/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /3.4-creating-the-header/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /3.4-creating-the-header/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /3.4-creating-the-header/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /3.4-creating-the-header/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /3.4-creating-the-header/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /3.4-creating-the-header/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.4-creating-the-header/index.html -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/.gitignore -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/.theia/settings.json -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/README.md -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/assets/css/style.css -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/assets/favicon/about.txt -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /3.5a-styling-the-header-for-mobile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5a-styling-the-header-for-mobile/index.html -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/.gitignore -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/.theia/settings.json -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/README.md -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/assets/css/style.css -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/assets/favicon/about.txt -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /3.5b-toggling-a-dropdown-menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.5b-toggling-a-dropdown-menu/index.html -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/.gitignore -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/.theia/settings.json -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/README.md -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/assets/css/style.css -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/assets/favicon/about.txt -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /3.6-making-the-header-responsive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.6-making-the-header-responsive/index.html -------------------------------------------------------------------------------- /3.7-creating-the-footer/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /3.7-creating-the-footer/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /3.7-creating-the-footer/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /3.7-creating-the-footer/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /3.7-creating-the-footer/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /3.7-creating-the-footer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/.gitignore -------------------------------------------------------------------------------- /3.7-creating-the-footer/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/.theia/settings.json -------------------------------------------------------------------------------- /3.7-creating-the-footer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/README.md -------------------------------------------------------------------------------- /3.7-creating-the-footer/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/assets/css/style.css -------------------------------------------------------------------------------- /3.7-creating-the-footer/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/assets/favicon/about.txt -------------------------------------------------------------------------------- /3.7-creating-the-footer/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /3.7-creating-the-footer/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /3.7-creating-the-footer/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /3.7-creating-the-footer/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /3.7-creating-the-footer/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /3.7-creating-the-footer/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /3.7-creating-the-footer/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /3.7-creating-the-footer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.7-creating-the-footer/index.html -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/.gitignore -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/.theia/settings.json -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/README.md -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/assets/css/style.css -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/assets/favicon/about.txt -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/gallery.html -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/index.html -------------------------------------------------------------------------------- /3.8-creating-the-other-pages/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/3.8-creating-the-other-pages/signup.html -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/.gitignore -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/.theia/settings.json -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/README.md -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/assets/css/style.css -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/assets/favicon/about.txt -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/assets/images/hero-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/assets/images/hero-image.webp -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/gallery.html -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/index.html -------------------------------------------------------------------------------- /5.1a-adding-the-hero-image/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1a-adding-the-hero-image/signup.html -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/.gitignore -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/.theia/settings.json -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/README.md -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/assets/css/style.css -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/about.txt -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/assets/images/hero-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/assets/images/hero-image.webp -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/gallery.html -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/index.html -------------------------------------------------------------------------------- /5.1b-adding-the-cover-text-on-the-hero-image/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.1b-adding-the-cover-text-on-the-hero-image/signup.html -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/.gitignore -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/.theia/settings.json -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/README.md -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/assets/css/style.css -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/assets/favicon/about.txt -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/assets/images/hero-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/assets/images/hero-image.webp -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/gallery.html -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/index.html -------------------------------------------------------------------------------- /5.2a-adding-the-reasons-section/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2a-adding-the-reasons-section/signup.html -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/.gitignore -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/.theia/settings.json -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/README.md -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/assets/css/style.css -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/assets/favicon/about.txt -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/assets/images/hero-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/assets/images/hero-image.webp -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/assets/images/reasons-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/assets/images/reasons-image.webp -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/gallery.html -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/index.html -------------------------------------------------------------------------------- /5.2b-making-the-reasons-section-responsive/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.2b-making-the-reasons-section-responsive/signup.html -------------------------------------------------------------------------------- /5.3-meetup-times/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /5.3-meetup-times/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /5.3-meetup-times/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /5.3-meetup-times/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /5.3-meetup-times/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /5.3-meetup-times/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/.gitignore -------------------------------------------------------------------------------- /5.3-meetup-times/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/.theia/settings.json -------------------------------------------------------------------------------- /5.3-meetup-times/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/README.md -------------------------------------------------------------------------------- /5.3-meetup-times/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/assets/css/style.css -------------------------------------------------------------------------------- /5.3-meetup-times/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/assets/favicon/about.txt -------------------------------------------------------------------------------- /5.3-meetup-times/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /5.3-meetup-times/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /5.3-meetup-times/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /5.3-meetup-times/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /5.3-meetup-times/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /5.3-meetup-times/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /5.3-meetup-times/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /5.3-meetup-times/assets/images/dublin-city.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/assets/images/dublin-city.webp -------------------------------------------------------------------------------- /5.3-meetup-times/assets/images/hero-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/assets/images/hero-image.webp -------------------------------------------------------------------------------- /5.3-meetup-times/assets/images/reasons-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/assets/images/reasons-image.webp -------------------------------------------------------------------------------- /5.3-meetup-times/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/gallery.html -------------------------------------------------------------------------------- /5.3-meetup-times/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/index.html -------------------------------------------------------------------------------- /5.3-meetup-times/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/5.3-meetup-times/signup.html -------------------------------------------------------------------------------- /6.1-lets-add-some-images/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /6.1-lets-add-some-images/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /6.1-lets-add-some-images/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /6.1-lets-add-some-images/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /6.1-lets-add-some-images/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /6.1-lets-add-some-images/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/.gitignore -------------------------------------------------------------------------------- /6.1-lets-add-some-images/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/.theia/settings.json -------------------------------------------------------------------------------- /6.1-lets-add-some-images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/README.md -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/css/style.css -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/favicon/about.txt -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/images/athletes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/images/athletes.webp -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/images/dublin-city.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/images/dublin-city.webp -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/images/girls.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/images/girls.webp -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/images/hero-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/images/hero-image.webp -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/images/man.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/images/man.webp -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/images/mud-run.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/images/mud-run.webp -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/images/reasons-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/images/reasons-image.webp -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/images/runner1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/images/runner1.webp -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/images/runner2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/images/runner2.webp -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/images/runner3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/images/runner3.webp -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/images/runner4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/images/runner4.webp -------------------------------------------------------------------------------- /6.1-lets-add-some-images/assets/images/running_gang.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/assets/images/running_gang.webp -------------------------------------------------------------------------------- /6.1-lets-add-some-images/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/gallery.html -------------------------------------------------------------------------------- /6.1-lets-add-some-images/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/index.html -------------------------------------------------------------------------------- /6.1-lets-add-some-images/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/6.1-lets-add-some-images/signup.html -------------------------------------------------------------------------------- /7.1-creating-the-form/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /7.1-creating-the-form/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /7.1-creating-the-form/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /7.1-creating-the-form/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /7.1-creating-the-form/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /7.1-creating-the-form/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/.gitignore -------------------------------------------------------------------------------- /7.1-creating-the-form/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/.theia/settings.json -------------------------------------------------------------------------------- /7.1-creating-the-form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/README.md -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/css/style.css -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/favicon/about.txt -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/images/athletes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/images/athletes.webp -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/images/dublin-city.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/images/dublin-city.webp -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/images/girls.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/images/girls.webp -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/images/hero-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/images/hero-image.webp -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/images/man.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/images/man.webp -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/images/mud-run.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/images/mud-run.webp -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/images/reasons-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/images/reasons-image.webp -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/images/runner1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/images/runner1.webp -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/images/runner2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/images/runner2.webp -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/images/runner3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/images/runner3.webp -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/images/runner4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/images/runner4.webp -------------------------------------------------------------------------------- /7.1-creating-the-form/assets/images/running_gang.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/assets/images/running_gang.webp -------------------------------------------------------------------------------- /7.1-creating-the-form/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/gallery.html -------------------------------------------------------------------------------- /7.1-creating-the-form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/index.html -------------------------------------------------------------------------------- /7.1-creating-the-form/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.1-creating-the-form/signup.html -------------------------------------------------------------------------------- /7.2-styling-the-form/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /7.2-styling-the-form/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /7.2-styling-the-form/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /7.2-styling-the-form/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /7.2-styling-the-form/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /7.2-styling-the-form/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/.gitignore -------------------------------------------------------------------------------- /7.2-styling-the-form/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/.theia/settings.json -------------------------------------------------------------------------------- /7.2-styling-the-form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/README.md -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/css/style.css -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/favicon/about.txt -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/athletes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/athletes.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/dublin-city.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/dublin-city.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/girls.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/girls.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/hero-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/hero-image.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/man.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/man.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/mud-run.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/mud-run.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/reasons-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/reasons-image.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/runner1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/runner1.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/runner2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/runner2.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/runner3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/runner3.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/runner4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/runner4.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/running_gang.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/running_gang.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/assets/images/signup-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/assets/images/signup-image.webp -------------------------------------------------------------------------------- /7.2-styling-the-form/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/gallery.html -------------------------------------------------------------------------------- /7.2-styling-the-form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/index.html -------------------------------------------------------------------------------- /7.2-styling-the-form/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/7.2-styling-the-form/signup.html -------------------------------------------------------------------------------- /8.1-testing-and-validation/.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /8.1-testing-and-validation/.devcontainer/build-assets/heroku_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/.devcontainer/build-assets/heroku_config.sh -------------------------------------------------------------------------------- /8.1-testing-and-validation/.devcontainer/build-assets/make_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/.devcontainer/build-assets/make_url.py -------------------------------------------------------------------------------- /8.1-testing-and-validation/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /8.1-testing-and-validation/.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /8.1-testing-and-validation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/.gitignore -------------------------------------------------------------------------------- /8.1-testing-and-validation/.theia/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/.theia/settings.json -------------------------------------------------------------------------------- /8.1-testing-and-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/README.md -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/css/style.css -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/favicon/about.txt -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/athletes.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/athletes.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/dublin-city.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/dublin-city.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/girls.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/girls.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/hero-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/hero-image.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/man.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/man.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/mud-run.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/mud-run.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/reasons-image copy.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/reasons-image copy.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/reasons-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/reasons-image.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/runner1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/runner1.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/runner2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/runner2.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/runner3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/runner3.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/runner4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/runner4.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/running_gang.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/running_gang.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/assets/images/signup-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/assets/images/signup-image.webp -------------------------------------------------------------------------------- /8.1-testing-and-validation/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/gallery.html -------------------------------------------------------------------------------- /8.1-testing-and-validation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/index.html -------------------------------------------------------------------------------- /8.1-testing-and-validation/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/love-running-v3/HEAD/8.1-testing-and-validation/signup.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Love Running Sourcecode --------------------------------------------------------------------------------