├── .gitignore ├── LICENSE ├── README.md ├── apple-touch-icon-precomposed.png ├── css └── main.css ├── favicon.ico ├── index.html ├── js └── main.js ├── partials ├── 404.html ├── about.html ├── blog.html ├── blog_item.html ├── contact.html ├── faq.html ├── home.html ├── pricing.html └── services.html └── templates ├── footer.html └── header.html /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ IDEA 2 | /.idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | AngularJS Tutorial 1 2 | ==================== 3 | 4 | author: [Nick Kaye](http://www.nickkaye.com) 5 | 6 | **NOTE: We’re referencing all of our vendor dependencies (e.g. Bootstrap, jQuery, Angular) at outside URLs. Therefore, it is necessary to host our site while we’re working on it. Be sure we are viewing it in a browser with http:// -- not file://** 7 | 8 | View the [live demo](http://nickckaye.github.io/angularjs-tutorial-1). 9 | -------------------------------------------------------------------------------- /apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charneykaye/angularjs-tutorial-1/376644df892b3998ab60f4237191f9250867ceb3/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- 1 | /* 2 | Custom CSS for... 3 | 'Modern Business' HTML Theme by Start Bootstrap 4 | 5 | All Start Bootstrap themes are licensed under Apache 2.0. 6 | For more info and more free Bootstrap 3 HTML themes, visit http://startbootstrap.com! 7 | */ 8 | 9 | /* Global Styles */ 10 | 11 | html, body { 12 | height: 100%; 13 | } 14 | 15 | body { 16 | padding-top: 50px; 17 | padding-bottom: 20px; 18 | } 19 | 20 | .dropdown { 21 | cursor:pointer; 22 | } 23 | 24 | 25 | .img-home-portfolio, 26 | .img-customer, 27 | .portfolio-item { 28 | margin-bottom: 30px; 29 | } 30 | 31 | .tab-pane { 32 | margin-top: 15px; 33 | } 34 | 35 | /* Page Sections */ 36 | .section, 37 | .section-colored { 38 | padding: 50px 0; 39 | } 40 | 41 | .section-colored { 42 | background-color: #e1e1e1; 43 | /* change this to change the background color of a colored section */ 44 | } 45 | 46 | .sidebar { 47 | margin-top: 40px; 48 | } 49 | 50 | .sidebar ul { 51 | border-radius: 5px; 52 | padding: 5px; 53 | border: 1px solid #cccccc; 54 | } 55 | 56 | /* Half Page Height Carousel Customization */ 57 | .carousel { 58 | height: 50%; 59 | } 60 | 61 | .item, 62 | .active, 63 | .carousel-inner { 64 | height: 100%; 65 | } 66 | 67 | .fill { 68 | width: 100%; 69 | height: 100%; 70 | background-position: center; 71 | background-size: cover; 72 | } 73 | 74 | /* Social Icons Styles */ 75 | .list-social-icons { 76 | margin-bottom: 45px; 77 | } 78 | 79 | .tooltip-social a { 80 | text-decoration: none; 81 | color: inherit; 82 | } 83 | 84 | .facebook-link a:hover { 85 | color: #3b5998; 86 | } 87 | 88 | .linkedin-link a:hover { 89 | color: #007fb1; 90 | } 91 | 92 | .twitter-link a:hover { 93 | color: #39a9e0; 94 | } 95 | 96 | .google-plus-link a:hover { 97 | color: #d14836; 98 | } 99 | 100 | /* Service Page Styles */ 101 | .service-icon { 102 | font-size: 50px; 103 | } 104 | 105 | /* 404 Page Styles */ 106 | .error-404 { 107 | font-size: 8em; 108 | } 109 | 110 | /* Pricing Page Styles */ 111 | .price { 112 | font-size: 4em; 113 | } 114 | 115 | .price-cents { 116 | vertical-align: super; 117 | font-size: 50%; 118 | } 119 | 120 | .price-month { 121 | font-size: 35%; 122 | font-style: italic; 123 | } 124 | 125 | /* Footer Styles */ 126 | footer { 127 | margin: 50px 0; 128 | } 129 | 130 | /* Responsive Styles */ 131 | @media (max-width: 767px) { 132 | 133 | .carousel { 134 | height: 70%; 135 | /* increases the carousel height so it looks good on phones */ 136 | } 137 | } 138 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charneykaye/angularjs-tutorial-1/376644df892b3998ab60f4237191f9250867ceb3/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | ACME Inc. 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 |
36 |
37 |
38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- 1 | /** 2 | * AngularJS Tutorial 1 3 | * @author Nick Kaye 4 | */ 5 | 6 | /** 7 | * Main AngularJS Web Application 8 | */ 9 | var app = angular.module('tutorialWebApp', [ 10 | 'ngRoute' 11 | ]); 12 | 13 | /** 14 | * Configure the Routes 15 | */ 16 | app.config(['$routeProvider', function ($routeProvider) { 17 | $routeProvider 18 | // Home 19 | .when("/", {templateUrl: "partials/home.html", controller: "PageCtrl"}) 20 | // Pages 21 | .when("/about", {templateUrl: "partials/about.html", controller: "PageCtrl"}) 22 | .when("/faq", {templateUrl: "partials/faq.html", controller: "PageCtrl"}) 23 | .when("/pricing", {templateUrl: "partials/pricing.html", controller: "PageCtrl"}) 24 | .when("/services", {templateUrl: "partials/services.html", controller: "PageCtrl"}) 25 | .when("/contact", {templateUrl: "partials/contact.html", controller: "PageCtrl"}) 26 | // Blog 27 | .when("/blog", {templateUrl: "partials/blog.html", controller: "BlogCtrl"}) 28 | .when("/blog/post", {templateUrl: "partials/blog_item.html", controller: "BlogCtrl"}) 29 | // else 404 30 | .otherwise("/404", {templateUrl: "partials/404.html", controller: "PageCtrl"}); 31 | }]); 32 | 33 | /** 34 | * Controls the Blog 35 | */ 36 | app.controller('BlogCtrl', function (/* $scope, $location, $http */) { 37 | console.log("Blog Controller reporting for duty."); 38 | }); 39 | 40 | /** 41 | * Controls all other Pages 42 | */ 43 | app.controller('PageCtrl', function (/* $scope, $location, $http */) { 44 | console.log("Page Controller reporting for duty."); 45 | 46 | // Activates the Carousel 47 | $('.carousel').carousel({ 48 | interval: 5000 49 | }); 50 | 51 | // Activates Tooltips for Social Links 52 | $('.tooltip-social').tooltip({ 53 | selector: "a[data-toggle=tooltip]" 54 | }) 55 | }); -------------------------------------------------------------------------------- /partials/404.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 |

404 7 | Page Not Found 8 |

9 | 14 |
15 | 16 |
17 | 18 |
19 | 20 |
21 |

404

22 | 23 |

The page you're looking for could not be found.

24 | 25 |

Here are some helpful links to help you find what you're looking for:

26 | 40 |
41 | 42 |
43 | 44 |
45 | 46 | -------------------------------------------------------------------------------- /partials/about.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 |

About 7 | It's Nice to Meet You! 8 |

9 | 14 |
15 | 16 |
17 | 18 |
19 | 20 |
21 | 22 |
23 |
24 |

Welcome to 'Modern Business'

25 | 26 |

This is a great place to introduce your company or project and describe what you do. This about page 27 | features general company information, employee bios, and other helpful elements.

28 | 29 |

Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats 30 | vitaes nemo minima rerums unsers sadips amets.. Sed ut perspiciatis unde omnis iste natus error sit 31 | voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore 32 | veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia 33 | voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione 34 | voluptatem sequi nesciunt.

35 |
36 | 37 |
38 | 39 | 40 | 41 |
42 | 43 |
44 | 45 |
46 | 47 |
48 | 49 | 50 |

John Smith 51 | Job Title 52 |

53 |

What does this team member do? Keep it short! This is also a great spot for social links!

54 |
    55 | 59 | 63 | 67 | 71 |
72 |
73 | 74 |
75 | 76 | 77 |

John Smith 78 | Job Title 79 |

80 |

What does this team member do? Keep it short! This is also a great spot for social links!

81 |
    82 | 86 | 90 | 94 | 98 |
99 |
100 | 101 |
102 | 103 | 104 |

John Smith 105 | Job Title 106 |

107 |

What does this team member do? Keep it short! This is also a great spot for social links!

108 |
    109 | 113 | 117 | 121 | 125 |
126 |
127 | 128 |
129 | 130 | 131 |

John Smith 132 | Job Title 133 |

134 |

What does this team member do? Keep it short! This is also a great spot for social links!

135 |
    136 | 140 | 144 | 148 | 152 |
153 |
154 | 155 |
156 | 157 | 158 |

John Smith 159 | Job Title 160 |

161 |

What does this team member do? Keep it short! This is also a great spot for social links!

162 |
    163 | 167 | 171 | 175 | 179 |
180 |
181 | 182 |
183 | 184 | 185 |

John Smith 186 | Job Title 187 |

188 |

What does this team member do? Keep it short! This is also a great spot for social links!

189 |
    190 | 194 | 198 | 202 | 206 |
207 |
208 | 209 |
210 | 211 | 212 | 213 |
214 | 215 |
216 | 217 |
218 | 219 |
220 | 221 |
222 | 223 |
224 | 225 |
226 | 227 |
228 | 229 |
230 | 231 |
232 | 233 |
234 | 235 |
236 | 237 |
238 | 239 |
240 | 241 |
242 | 243 |
244 | 245 |
246 | 247 | -------------------------------------------------------------------------------- /partials/blog.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 |

Blog Home 2 7 | Blog Homepage 8 |

9 | 14 |
15 | 16 |
17 | 18 |
19 | 20 |
21 |

22 |

23 | 24 |

May 24, 2013

25 |
26 |
27 | 28 | 29 | 30 |
31 |
32 |

A Blog Home Template for Bootstrap 3 33 |

34 | 35 |

by Start Bootstrap 36 |

37 | 38 |

This is a very basic starter template for a blog homepage. It makes use of Font Awesome icons that are 39 | built into the 'Modern Business' template, and it makes use of the Bootstrap 3 pager at the bottom of 40 | the page.

41 | Read More 42 |
43 | 44 |
45 | 46 |
47 | 48 |
49 | 50 |
51 |

52 |

53 | 54 |

May 24, 2013

55 |
56 |
57 | 58 | 59 | 60 |
61 |
62 |

A Blog Home Template for Bootstrap 3 63 |

64 | 65 |

by Start Bootstrap 66 |

67 | 68 |

This is a very basic starter template for a blog homepage. It makes use of Font Awesome icons that are 69 | built into the 'Modern Business' template, and it makes use of the Bootstrap 3 pager at the bottom of 70 | the page.

71 | Read More 72 |
73 |
74 | 75 |
76 | 77 |
78 | 79 |
80 |

81 |

82 | 83 |

May 24, 2013

84 |
85 |
86 | 87 | 88 | 89 |
90 |
91 |

A Blog Home Template for Bootstrap 3 92 |

93 | 94 |

by Start Bootstrap 95 |

96 | 97 |

This is a very basic starter template for a blog homepage. It makes use of Font Awesome icons that are 98 | built into the 'Modern Business' template, and it makes use of the Bootstrap 3 pager at the bottom of 99 | the page.

100 | Read More 101 |
102 |
103 | 104 |
105 | 106 |
107 | 108 | 114 | 115 |
116 | 117 |
118 | -------------------------------------------------------------------------------- /partials/blog_item.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 |

Blog Post 7 | A Sample Blog Post 8 |

9 | 14 |
15 | 16 |
17 | 18 |
19 | 20 |
21 | 22 | 23 |
24 |

Posted on August 24, 2013 at 9:00 PM by Start Boostrap 25 |

26 |
27 | 28 |
29 |

Science cuts two ways, of course; its products can be used for both good and evil. But 30 | there's no turning back from science. The early warnings about technological dangers also come from 31 | science.

32 | 33 |

You know, being a test pilot isn't always the healthiest business in the world.

34 | 35 |

Cookie jelly beans soufflé icing. Gummi bears tootsie roll powder chupa chups cheesecake chocolate 36 | jelly-o lollipop lollipop. Halvah applicake chupa chups. Marshmallow chocolate jujubes icing lollipop 37 | gummi bears chupa chups pudding bonbon. Jelly beans jelly soufflé jujubes. Sesame snaps lollipop icing 38 | donut lemon drops soufflé.

39 | 40 |

Donut caramels gingerbread. Sweet roll macaroon pastry cotton candy oat cake sesame snaps biscuit lemon 41 | drops dessert. Candy canes carrot cake danish carrot cake soufflé jelly chocolate cake muffin. Topping 42 | brownie donut. Oat cake marzipan dragée cheesecake. Donut chocolate cake jujubes tart dragée toffee.

43 | 44 |

Tilefish electric knifefish salmon shark southern Dolly Varden. Pacific argentine tope golden shiner 45 | ilisha barreleye loosejaw catla, dogteeth tetra catfish tenpounder nase scup Ragfish brotula." Codlet 46 | brook lamprey pleco, Japanese eel convict cichlid titan triggerfish, plownose chimaera topminnow Black 47 | scalyfin. Walleye pollock, blue shark Sacramento blackfish prickleback airbreathing catfish yellowfin 48 | cutthroat trout, goby southern sandfish. North Pacific daggertooth dorab cepalin weever flying 49 | gurnard.

50 | 51 |

Placeholder text by: 52 |

53 | 61 | 62 |
63 | 64 | 65 |
66 |

Leave a Comment:

67 | 68 |
69 |
70 | 71 |
72 | 73 |
74 |
75 | 76 |
77 | 78 | 79 |

Start Bootstrap 80 | 9:41 PM on August 24, 2013 81 |

82 |

This has to be the worst blog post I have ever read. It simply makes no sense. You start off by talking 83 | about space or something, then you randomly start babbling about cupcakes, and you end off with random 84 | fish names.

85 | 86 |

Start Bootstrap 87 | 9:47 PM on August 24, 2013 88 |

89 |

Don't listen to this guy, any blog with the categories 'dinosaurs, spaceships, fried foods, wild animals, 90 | alien abductions, business casual, robots, and fireworks' has true potential.

91 | 92 |
93 | 94 |
95 |
96 |

Blog Search

97 | 98 |
99 | 100 | 101 | 103 | 104 |
105 | 106 |
107 | 108 |
109 |

Popular Blog Categories

110 | 111 |
112 |
113 | 123 |
124 |
125 | 135 |
136 |
137 |
138 | 139 |
140 |

Side Widget Well

141 | 142 |

Bootstrap's default well's work great for side widgets! What is a widget anyways...?

143 |
144 | 145 |
146 |
147 | 148 |
149 | -------------------------------------------------------------------------------- /partials/contact.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 | 6 |
7 |

Contact 8 | We'd Love to Hear From You! 9 |

10 | 14 |
15 | 16 |
17 | 18 | 20 |
21 | 22 |
23 | 24 | 25 |
26 | 27 |
28 |

Let's Get In Touch!

29 | 30 |

Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats 31 | vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit 32 | voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore 33 | veritatis et quasi architecto beatae vitae dicta sunt explicabo.

34 | 35 |
36 |
37 |
38 | 39 | 40 |
41 |
42 | 43 | 44 |
45 |
46 | 47 | 48 |
49 |
50 |
51 | 52 | 53 |
54 |
55 | 56 | 57 |
58 |
59 |
60 |
61 | 62 |
63 |

Modern Business

64 |

A Start Bootstrap Template

65 | 66 |

67 | 5555 44th Street N.
68 | Bootstrapville, CA 32323
69 |

70 | 71 |

P: (555) 984-3600

72 | 73 |

E: feedback@startbootstrap.com

75 | 76 |

H: Monday - Friday: 9:00 AM to 5:00 PM

77 |
    78 | 81 | 84 | 87 | 90 |
91 |
92 | 93 |
94 | 95 | 96 |
-------------------------------------------------------------------------------- /partials/faq.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 |

FAQ 7 | Frequently Asked Questions 8 |

9 | 14 |
15 | 16 |
17 | 18 |
19 | 20 |
21 | 22 |
23 | 24 |
25 | 33 |
34 |
35 | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad 36 | squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa 37 | nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid 38 | single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft 39 | beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice 40 | lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you 41 | probably haven't heard of them accusamus labore sustainable VHS. 42 |
43 |
44 |
45 | 46 |
47 | 56 |
57 |
58 | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad 59 | squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa 60 | nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid 61 | single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft 62 | beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice 63 | lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you 64 | probably haven't heard of them accusamus labore sustainable VHS. 65 |
66 |
67 |
68 | 69 |
70 | 78 |
79 |
80 | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad 81 | squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa 82 | nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid 83 | single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft 84 | beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice 85 | lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you 86 | probably haven't heard of them accusamus labore sustainable VHS. 87 |
88 |
89 |
90 | 91 |
92 | 100 |
101 |
102 | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad 103 | squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa 104 | nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid 105 | single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft 106 | beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice 107 | lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you 108 | probably haven't heard of them accusamus labore sustainable VHS. 109 |
110 |
111 |
112 | 113 |
114 | 123 |
124 |
125 | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad 126 | squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa 127 | nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid 128 | single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft 129 | beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice 130 | lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you 131 | probably haven't heard of them accusamus labore sustainable VHS. 132 |
133 |
134 |
135 | 136 |
137 | 145 |
146 |
147 | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad 148 | squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa 149 | nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid 150 | single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft 151 | beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice 152 | lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you 153 | probably haven't heard of them accusamus labore sustainable VHS. 154 |
155 |
156 |
157 | 158 |
159 | 167 |
168 |
169 | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad 170 | squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa 171 | nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid 172 | single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft 173 | beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice 174 | lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you 175 | probably haven't heard of them accusamus labore sustainable VHS. 176 |
177 |
178 |
179 | 180 |
181 | 190 |
191 |
192 | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad 193 | squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa 194 | nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid 195 | single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft 196 | beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice 197 | lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you 198 | probably haven't heard of them accusamus labore sustainable VHS. 199 |
200 |
201 |
202 | 203 |
204 | 212 |
213 |
214 | Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad 215 | squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa 216 | nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid 217 | single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft 218 | beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice 219 | lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you 220 | probably haven't heard of them accusamus labore sustainable VHS. 221 |
222 |
223 |
224 | 225 |
226 | 227 |
228 | 229 |
230 | 231 |
232 | -------------------------------------------------------------------------------- /partials/home.html: -------------------------------------------------------------------------------- 1 | 2 | 40 | 41 |
42 | 43 |
44 | 45 |
46 |
47 |

Bootstrap 3 Built

48 |

The 'Modern Business' website template by Start Bootstrap is built with Bootstrap 3. Make sure you're up to date with latest Bootstrap documentation!

49 |
50 |
51 |

Ready to Style & Edit

52 |

You're ready to go with this pre-built page structure, now all you need to do is add your own custom stylings! You can see some free themes over at Bootswatch, or come up with your own using the Bootstrap customizer!

53 |
54 |
55 |

Many Page Options

56 |

This template features many common pages that you might see on a business website. Pages include: about, contact, portfolio variations, blog, pricing, FAQ, 404, services, and general multi-purpose pages.

57 |
58 |
59 | 60 | 61 |
62 | 63 | 64 |
65 | 66 | 67 |
68 | 69 |
70 | 71 |
72 |
73 |

Modern Business: A Clean & Simple Full Website Template by Start Bootstrap

74 |

A complete website design featuring various single page templates from Start Bootstraps library of free HTML starter templates.

75 |
76 |
77 |
78 | 79 | 80 |
81 | 82 | 83 |
84 | 85 | 86 |
87 | 88 |
89 | 90 |
91 |
92 |

Display Some Work on the Home Page Portfolio

93 |
94 |
95 |
96 | 97 | 98 | 99 |
100 |
101 | 102 | 103 | 104 |
105 |
106 | 107 | 108 | 109 |
110 |
111 | 112 | 113 | 114 |
115 |
116 | 117 | 118 | 119 |
120 |
121 | 122 | 123 | 124 |
125 |
126 | 127 | 128 |
129 | 130 | 131 |
132 | 133 | 134 |
135 | 136 |
137 | 138 |
139 |
140 |

Modern Business Features Include:

141 |
    142 |
  • Bootstrap 3 Framework
  • 143 |
  • Mobile Responsive Design
  • 144 |
  • Predefined File Paths
  • 145 |
  • Working PHP Contact Page
  • 146 |
  • Minimal Custom CSS Styles
  • 147 |
  • Unstyled: Add Your Own Style and Content!
  • 148 |
  • Font-Awesome fonts come pre-installed!
  • 149 |
  • 100% Free to Use
  • 150 |
  • Open Source: Use for any project, private or commercial!
  • 151 |
152 |
153 |
154 | 155 |
156 |
157 | 158 | 159 |
160 | 161 | 162 |
163 | 164 | 165 |
166 | 167 |
168 | 169 |
170 |
171 | 172 |
173 |
174 |

Modern Business Features Include:

175 |
    176 |
  • Bootstrap 3 Framework
  • 177 |
  • Mobile Responsive Design
  • 178 |
  • Predefined File Paths
  • 179 |
  • Working PHP Contact Page
  • 180 |
  • Minimal Custom CSS Styles
  • 181 |
  • Unstyled: Add Your Own Style and Content!
  • 182 |
  • Font-Awesome fonts come pre-installed!
  • 183 |
  • 100% Free to Use
  • 184 |
  • Open Source: Use for any project, private or commercial!
  • 185 |
186 |
187 |
188 | 189 | 190 |
191 | 192 | 193 |
194 | 195 | 196 |
197 | 198 |
199 |
200 |

'Modern Business' is a ready-to-use, Bootstrap 3 updated, multi-purpose HTML theme!

201 |

For more templates and more page options that you can integrate into this website template, visit Start Bootstrap!

202 |
203 |
204 | See More Templates! 205 |
206 |
207 | 208 | 209 |
210 | 211 | -------------------------------------------------------------------------------- /partials/pricing.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 |
6 |

Pricing Table 7 | Our Pricing Options 8 |

9 | 14 |
15 | 16 |
17 | 18 |
19 | 20 |
21 |
22 |
23 | Basic 24 |
25 |
26 |

$9 27 | 99 28 | mo. 29 |

30 |
31 |
    32 |
  • 5 Projects
  • 33 |
  • 5 GB of Storage
  • 34 |
  • Up to 100 Users
  • 35 |
  • 10 GB Bandwidth
  • 36 |
  • Security Suite
  • 37 |
  • Sign Up Now! 38 |
  • 39 |
40 |
41 |
42 |
43 |
44 |
45 | Plus 46 |
47 |
48 |

$19 49 | 99 50 | mo. 51 |

52 |
53 |
    54 |
  • 10 Projects
  • 55 |
  • 10 GB of Storage
  • 56 |
  • Up to 250 Users
  • 57 |
  • 25 GB Bandwidth
  • 58 |
  • Security Suite
  • 59 |
  • Sign Up Now! 60 |
  • 61 |
62 |
63 |
64 |
65 |
66 |
67 | Premium Best Value! 68 |
69 |
70 |

$29 71 | 99 72 | mo. 73 |

74 |
75 |
    76 |
  • Unlimited
  • 77 |
  • 50 GB of Storage
  • 78 |
  • Up to 1000 Users
  • 79 |
  • 100 GB Bandwidth
  • 80 |
  • Security Suite
  • 81 |
  • Sign Up Now! 82 |
  • 83 |
84 |
85 |
86 |
87 |
88 |
89 | Ultimate 90 |
91 |
92 |

$49 93 | 99 94 | mo. 95 |

96 |
97 |
    98 |
  • Unlimited
  • 99 |
  • 150 GB of Storage
  • 100 |
  • Unlimited
  • 101 |
  • 500 GB Bandwidth
  • 102 |
  • Security Suite
  • 103 |
  • Sign Up Now! 104 |
  • 105 |
106 |
107 |
108 | 109 |
110 | 111 |
112 | 113 | 114 | -------------------------------------------------------------------------------- /partials/services.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 | 7 |
8 |

Services 9 | What We Do 10 |

11 | 16 |
17 | 18 |
19 | 20 | 21 |
22 | 23 |
24 | 25 |
26 | 27 |
28 | 29 | 30 | 31 | 32 |
33 | 34 |
35 | 36 | 37 |

Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats 38 | vitaes nemo minima rerums unsers sadips amets. Sed ut perspiciatis unde omnis iste natus error sit 39 | voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore 40 | veritatis et quasi architecto beatae vitae dicta sunt explicabo.

41 |
42 | 43 |
44 | 45 | 46 |

Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips 47 | amets.

48 | Click Me! 49 |
50 | 51 |
52 | 53 | 54 | 55 | 56 |
57 | 58 |
59 | 60 | 72 |
73 |
74 | 75 | 76 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc placerat diam quis nisl vestibulum 77 | dignissim. In hac habitasse platea dictumst. Interdum et malesuada fames ac ante ipsum primis in 78 | faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis 79 | egestas. Etiam placerat nunc ut tellus tristique, non posuere neque iaculis. Fusce aliquet dui 80 | ut felis rhoncus, vitae molestie mauris auctor. Donec pellentesque feugiat leo a adipiscing. 81 | Pellentesque quis tristique eros, sed rutrum mauris.

82 | 83 |

Nam fringilla quis enim in eleifend. Suspendisse sed lectus mauris. Nam commodo, arcu et posuere 84 | placerat, tellus tortor dignissim eros, sit amet eleifend urna lorem sit amet nulla. Praesent 85 | sem nibh, vulputate nec congue eu, dapibus vitae augue. Suspendisse cursus urna sit amet metus 86 | porttitor, in pharetra quam feugiat. Etiam tempus euismod nulla eget pellentesque.

87 |
88 |
89 | 90 | 91 |

Nam fringilla quis enim in eleifend. Suspendisse sed lectus mauris. Nam commodo, arcu et posuere 92 | placerat, tellus tortor dignissim eros, sit amet eleifend urna lorem sit amet nulla. Praesent 93 | sem nibh, vulputate nec congue eu, dapibus vitae augue. Suspendisse cursus urna sit amet metus 94 | porttitor, in pharetra quam feugiat. Etiam tempus euismod nulla eget pellentesque.

95 | 96 |

Vestibulum laoreet molestie urna ac vehicula. Phasellus laoreet semper ipsum ac gravida. Sed in 97 | varius tortor. Nullam blandit in neque quis aliquet. Fusce volutpat pellentesque sem non 98 | convallis. Suspendisse sit amet magna pulvinar, gravida mauris eu, tincidunt massa. Nam lectus 99 | mi, viverra non quam nec, mollis malesuada dolor. Vivamus hendrerit nunc interdum turpis 100 | egestas, a lobortis odio consequat. Fusce posuere purus quis ligula faucibus lacinia. Curabitur 101 | sit amet congue dolor. Duis dapibus hendrerit nunc et gravida. Phasellus mollis, lectus quis 102 | ornare aliquam, arcu orci posuere lectus, vehicula bibendum sem ante quis lacus.

103 |
104 |
105 | 106 | 107 |

Vestibulum laoreet molestie urna ac vehicula. Phasellus laoreet semper ipsum ac gravida. Sed in 108 | varius tortor. Nullam blandit in neque quis aliquet. Fusce volutpat pellentesque sem non 109 | convallis. Suspendisse sit amet magna pulvinar, gravida mauris eu, tincidunt massa. Nam lectus 110 | mi, viverra non quam nec, mollis malesuada dolor. Vivamus hendrerit nunc interdum turpis 111 | egestas, a lobortis odio consequat. Fusce posuere purus quis ligula faucibus lacinia. Curabitur 112 | sit amet congue dolor. Duis dapibus hendrerit nunc et gravida. Phasellus mollis, lectus quis 113 | ornare aliquam, arcu orci posuere lectus, vehicula bibendum sem ante quis lacus.

114 | 115 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc placerat diam quis nisl vestibulum 116 | dignissim. In hac habitasse platea dictumst. Interdum et malesuada fames ac ante ipsum primis in 117 | faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis 118 | egestas. Etiam placerat nunc ut tellus tristique, non posuere neque iaculis. Fusce aliquet dui 119 | ut felis rhoncus, vitae molestie mauris auctor. Donec pellentesque feugiat leo a adipiscing. 120 | Pellentesque quis tristique eros, sed rutrum mauris.

121 |
122 |
123 | 124 | 125 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc placerat diam quis nisl vestibulum 126 | dignissim. In hac habitasse platea dictumst. Interdum et malesuada fames ac ante ipsum primis in 127 | faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis 128 | egestas. Etiam placerat nunc ut tellus tristique, non posuere neque iaculis. Fusce aliquet dui 129 | ut felis rhoncus, vitae molestie mauris auctor. Donec pellentesque feugiat leo a adipiscing. 130 | Pellentesque quis tristique eros, sed rutrum mauris.

131 | 132 |

Nam fringilla quis enim in eleifend. Suspendisse sed lectus mauris. Nam commodo, arcu et posuere 133 | placerat, tellus tortor dignissim eros, sit amet eleifend urna lorem sit amet nulla. Praesent 134 | sem nibh, vulputate nec congue eu, dapibus vitae augue. Suspendisse cursus urna sit amet metus 135 | porttitor, in pharetra quam feugiat. Etiam tempus euismod nulla eget pellentesque.

136 |
137 |
138 | 139 | 140 |

Nam fringilla quis enim in eleifend. Suspendisse sed lectus mauris. Nam commodo, arcu et posuere 141 | placerat, tellus tortor dignissim eros, sit amet eleifend urna lorem sit amet nulla. Praesent 142 | sem nibh, vulputate nec congue eu, dapibus vitae augue. Suspendisse cursus urna sit amet metus 143 | porttitor, in pharetra quam feugiat. Etiam tempus euismod nulla eget pellentesque.

144 | 145 |

Vestibulum laoreet molestie urna ac vehicula. Phasellus laoreet semper ipsum ac gravida. Sed in 146 | varius tortor. Nullam blandit in neque quis aliquet. Fusce volutpat pellentesque sem non 147 | convallis. Suspendisse sit amet magna pulvinar, gravida mauris eu, tincidunt massa. Nam lectus 148 | mi, viverra non quam nec, mollis malesuada dolor. Vivamus hendrerit nunc interdum turpis 149 | egestas, a lobortis odio consequat. Fusce posuere purus quis ligula faucibus lacinia. Curabitur 150 | sit amet congue dolor. Duis dapibus hendrerit nunc et gravida. Phasellus mollis, lectus quis 151 | ornare aliquam, arcu orci posuere lectus, vehicula bibendum sem ante quis lacus.

152 |
153 |
154 |
155 | 156 |
157 | 158 | 159 | 160 | 161 |
162 | 163 |
164 | 165 |
166 | 167 |
168 | 169 | 170 |

Service One

171 | 172 |

Service one description. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc placerat diam quis 173 | nisl vestibulum dignissim. In hac habitasse platea dictumst.

174 | More 175 |
176 | 177 |
178 | 179 | 180 |

Service Two

181 | 182 |

Service two description. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc placerat diam quis 183 | nisl vestibulum dignissim. In hac habitasse platea dictumst.

184 | More 185 |
186 | 187 |
188 | 189 | 190 |

Service Three

191 | 192 |

Service three description. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc placerat diam 193 | quis nisl vestibulum dignissim. In hac habitasse platea dictumst.

194 | More 195 |
196 | 197 |
198 | 199 | 200 |
201 | 202 | -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /templates/header.html: -------------------------------------------------------------------------------- 1 | 42 | --------------------------------------------------------------------------------