├── LICENSE ├── README.md └── modernbootsite ├── images ├── about-img.jpg ├── chef-1.png ├── chef-2.png ├── chef-3.png ├── header-bg.jpg ├── logo.png ├── menu-item-1.jpg ├── menu-item-2.jpg ├── menu-item-3.jpg ├── menu-item-4.jpg ├── menu-item-5.jpg └── menu-item-6.jpg ├── index.html ├── scripts.js └── styles.css /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 jlop007 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # bootstrap-bakery 2 | Starter files for the project 3 | 4 | In this repo you'll find all the files necessary to get you started with this project. Once completed feel free to modify as you'd like. 5 | -------------------------------------------------------------------------------- /modernbootsite/images/about-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlop007/bootstrap-bakery/e19cc3644b2008eda3b4b6fc9994e27de784f47d/modernbootsite/images/about-img.jpg -------------------------------------------------------------------------------- /modernbootsite/images/chef-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlop007/bootstrap-bakery/e19cc3644b2008eda3b4b6fc9994e27de784f47d/modernbootsite/images/chef-1.png -------------------------------------------------------------------------------- /modernbootsite/images/chef-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlop007/bootstrap-bakery/e19cc3644b2008eda3b4b6fc9994e27de784f47d/modernbootsite/images/chef-2.png -------------------------------------------------------------------------------- /modernbootsite/images/chef-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlop007/bootstrap-bakery/e19cc3644b2008eda3b4b6fc9994e27de784f47d/modernbootsite/images/chef-3.png -------------------------------------------------------------------------------- /modernbootsite/images/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlop007/bootstrap-bakery/e19cc3644b2008eda3b4b6fc9994e27de784f47d/modernbootsite/images/header-bg.jpg -------------------------------------------------------------------------------- /modernbootsite/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlop007/bootstrap-bakery/e19cc3644b2008eda3b4b6fc9994e27de784f47d/modernbootsite/images/logo.png -------------------------------------------------------------------------------- /modernbootsite/images/menu-item-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlop007/bootstrap-bakery/e19cc3644b2008eda3b4b6fc9994e27de784f47d/modernbootsite/images/menu-item-1.jpg -------------------------------------------------------------------------------- /modernbootsite/images/menu-item-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlop007/bootstrap-bakery/e19cc3644b2008eda3b4b6fc9994e27de784f47d/modernbootsite/images/menu-item-2.jpg -------------------------------------------------------------------------------- /modernbootsite/images/menu-item-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlop007/bootstrap-bakery/e19cc3644b2008eda3b4b6fc9994e27de784f47d/modernbootsite/images/menu-item-3.jpg -------------------------------------------------------------------------------- /modernbootsite/images/menu-item-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlop007/bootstrap-bakery/e19cc3644b2008eda3b4b6fc9994e27de784f47d/modernbootsite/images/menu-item-4.jpg -------------------------------------------------------------------------------- /modernbootsite/images/menu-item-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlop007/bootstrap-bakery/e19cc3644b2008eda3b4b6fc9994e27de784f47d/modernbootsite/images/menu-item-5.jpg -------------------------------------------------------------------------------- /modernbootsite/images/menu-item-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlop007/bootstrap-bakery/e19cc3644b2008eda3b4b6fc9994e27de784f47d/modernbootsite/images/menu-item-6.jpg -------------------------------------------------------------------------------- /modernbootsite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 7 | 8 |