├── LICENSE ├── README.md ├── readme-images ├── bootstrap-studio-banner.jpg └── clean-sky-title.jpg └── template ├── about-us.html ├── assets ├── css │ ├── baguetteBox.min.css │ ├── bootstrap.min.css │ ├── smoothproducts.min.css │ └── style.css ├── img │ ├── avatars │ │ ├── avatar1.jpg │ │ ├── avatar2.jpg │ │ └── avatar3.jpg │ ├── scenery │ │ ├── image1.jpg │ │ ├── image3.jpg │ │ ├── image4.jpg │ │ ├── image5.jpg │ │ └── image6.jpg │ ├── star-empty.svg │ ├── star-half-empty.svg │ ├── star.svg │ └── tech │ │ ├── image1.jpg │ │ ├── image2.jpg │ │ ├── image3.png │ │ └── image4.jpg └── js │ └── script.min.js ├── blog-post-list.html ├── blog-post.html ├── catalog-page.html ├── contact-us.html ├── faq.html ├── features.html ├── gallery.html ├── index.html ├── login.html ├── payment-page.html ├── pricing.html ├── product-page.html ├── registration.html ├── service-page.html ├── shopping-cart.html ├── slider.html └── testimonials.html /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More_considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution 4.0 International Public License 58 | 59 | By exercising the Licensed Rights (defined below), You accept and agree 60 | to be bound by the terms and conditions of this Creative Commons 61 | Attribution 4.0 International Public License ("Public License"). To the 62 | extent this Public License may be interpreted as a contract, You are 63 | granted the Licensed Rights in consideration of Your acceptance of 64 | these terms and conditions, and the Licensor grants You such rights in 65 | consideration of benefits the Licensor receives from making the 66 | Licensed Material available under these terms and conditions. 67 | 68 | 69 | Section 1 -- Definitions. 70 | 71 | a. Adapted Material means material subject to Copyright and Similar 72 | Rights that is derived from or based upon the Licensed Material 73 | and in which the Licensed Material is translated, altered, 74 | arranged, transformed, or otherwise modified in a manner requiring 75 | permission under the Copyright and Similar Rights held by the 76 | Licensor. For purposes of this Public License, where the Licensed 77 | Material is a musical work, performance, or sound recording, 78 | Adapted Material is always produced where the Licensed Material is 79 | synched in timed relation with a moving image. 80 | 81 | b. Adapter's License means the license You apply to Your Copyright 82 | and Similar Rights in Your contributions to Adapted Material in 83 | accordance with the terms and conditions of this Public License. 84 | 85 | c. Copyright and Similar Rights means copyright and/or similar rights 86 | closely related to copyright including, without limitation, 87 | performance, broadcast, sound recording, and Sui Generis Database 88 | Rights, without regard to how the rights are labeled or 89 | categorized. For purposes of this Public License, the rights 90 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 91 | Rights. 92 | 93 | d. Effective Technological Measures means those measures that, in the 94 | absence of proper authority, may not be circumvented under laws 95 | fulfilling obligations under Article 11 of the WIPO Copyright 96 | Treaty adopted on December 20, 1996, and/or similar international 97 | agreements. 98 | 99 | e. Exceptions and Limitations means fair use, fair dealing, and/or 100 | any other exception or limitation to Copyright and Similar Rights 101 | that applies to Your use of the Licensed Material. 102 | 103 | f. Licensed Material means the artistic or literary work, database, 104 | or other material to which the Licensor applied this Public 105 | License. 106 | 107 | g. Licensed Rights means the rights granted to You subject to the 108 | terms and conditions of this Public License, which are limited to 109 | all Copyright and Similar Rights that apply to Your use of the 110 | Licensed Material and that the Licensor has authority to license. 111 | 112 | h. Licensor means the individual(s) or entity(ies) granting rights 113 | under this Public License. 114 | 115 | i. Share means to provide material to the public by any means or 116 | process that requires permission under the Licensed Rights, such 117 | as reproduction, public display, public performance, distribution, 118 | dissemination, communication, or importation, and to make material 119 | available to the public including in ways that members of the 120 | public may access the material from a place and at a time 121 | individually chosen by them. 122 | 123 | j. Sui Generis Database Rights means rights other than copyright 124 | resulting from Directive 96/9/EC of the European Parliament and of 125 | the Council of 11 March 1996 on the legal protection of databases, 126 | as amended and/or succeeded, as well as other essentially 127 | equivalent rights anywhere in the world. 128 | 129 | k. You means the individual or entity exercising the Licensed Rights 130 | under this Public License. Your has a corresponding meaning. 131 | 132 | 133 | Section 2 -- Scope. 134 | 135 | a. License grant. 136 | 137 | 1. Subject to the terms and conditions of this Public License, 138 | the Licensor hereby grants You a worldwide, royalty-free, 139 | non-sublicensable, non-exclusive, irrevocable license to 140 | exercise the Licensed Rights in the Licensed Material to: 141 | 142 | a. reproduce and Share the Licensed Material, in whole or 143 | in part; and 144 | 145 | b. produce, reproduce, and Share Adapted Material. 146 | 147 | 2. Exceptions and Limitations. For the avoidance of doubt, where 148 | Exceptions and Limitations apply to Your use, this Public 149 | License does not apply, and You do not need to comply with 150 | its terms and conditions. 151 | 152 | 3. Term. The term of this Public License is specified in Section 153 | 6(a). 154 | 155 | 4. Media and formats; technical modifications allowed. The 156 | Licensor authorizes You to exercise the Licensed Rights in 157 | all media and formats whether now known or hereafter created, 158 | and to make technical modifications necessary to do so. The 159 | Licensor waives and/or agrees not to assert any right or 160 | authority to forbid You from making technical modifications 161 | necessary to exercise the Licensed Rights, including 162 | technical modifications necessary to circumvent Effective 163 | Technological Measures. For purposes of this Public License, 164 | simply making modifications authorized by this Section 2(a) 165 | (4) never produces Adapted Material. 166 | 167 | 5. Downstream recipients. 168 | 169 | a. Offer from the Licensor -- Licensed Material. Every 170 | recipient of the Licensed Material automatically 171 | receives an offer from the Licensor to exercise the 172 | Licensed Rights under the terms and conditions of this 173 | Public License. 174 | 175 | b. No downstream restrictions. You may not offer or impose 176 | any additional or different terms or conditions on, or 177 | apply any Effective Technological Measures to, the 178 | Licensed Material if doing so restricts exercise of the 179 | Licensed Rights by any recipient of the Licensed 180 | Material. 181 | 182 | 6. No endorsement. Nothing in this Public License constitutes or 183 | may be construed as permission to assert or imply that You 184 | are, or that Your use of the Licensed Material is, connected 185 | with, or sponsored, endorsed, or granted official status by, 186 | the Licensor or others designated to receive attribution as 187 | provided in Section 3(a)(1)(A)(i). 188 | 189 | b. Other rights. 190 | 191 | 1. Moral rights, such as the right of integrity, are not 192 | licensed under this Public License, nor are publicity, 193 | privacy, and/or other similar personality rights; however, to 194 | the extent possible, the Licensor waives and/or agrees not to 195 | assert any such rights held by the Licensor to the limited 196 | extent necessary to allow You to exercise the Licensed 197 | Rights, but not otherwise. 198 | 199 | 2. Patent and trademark rights are not licensed under this 200 | Public License. 201 | 202 | 3. To the extent possible, the Licensor waives any right to 203 | collect royalties from You for the exercise of the Licensed 204 | Rights, whether directly or through a collecting society 205 | under any voluntary or waivable statutory or compulsory 206 | licensing scheme. In all other cases the Licensor expressly 207 | reserves any right to collect such royalties. 208 | 209 | 210 | Section 3 -- License Conditions. 211 | 212 | Your exercise of the Licensed Rights is expressly made subject to the 213 | following conditions. 214 | 215 | a. Attribution. 216 | 217 | 1. If You Share the Licensed Material (including in modified 218 | form), You must: 219 | 220 | a. retain the following if it is supplied by the Licensor 221 | with the Licensed Material: 222 | 223 | i. identification of the creator(s) of the Licensed 224 | Material and any others designated to receive 225 | attribution, in any reasonable manner requested by 226 | the Licensor (including by pseudonym if 227 | designated); 228 | 229 | ii. a copyright notice; 230 | 231 | iii. a notice that refers to this Public License; 232 | 233 | iv. a notice that refers to the disclaimer of 234 | warranties; 235 | 236 | v. a URI or hyperlink to the Licensed Material to the 237 | extent reasonably practicable; 238 | 239 | b. indicate if You modified the Licensed Material and 240 | retain an indication of any previous modifications; and 241 | 242 | c. indicate the Licensed Material is licensed under this 243 | Public License, and include the text of, or the URI or 244 | hyperlink to, this Public License. 245 | 246 | 2. You may satisfy the conditions in Section 3(a)(1) in any 247 | reasonable manner based on the medium, means, and context in 248 | which You Share the Licensed Material. For example, it may be 249 | reasonable to satisfy the conditions by providing a URI or 250 | hyperlink to a resource that includes the required 251 | information. 252 | 253 | 3. If requested by the Licensor, You must remove any of the 254 | information required by Section 3(a)(1)(A) to the extent 255 | reasonably practicable. 256 | 257 | 4. If You Share Adapted Material You produce, the Adapter's 258 | License You apply must not prevent recipients of the Adapted 259 | Material from complying with this Public License. 260 | 261 | 262 | Section 4 -- Sui Generis Database Rights. 263 | 264 | Where the Licensed Rights include Sui Generis Database Rights that 265 | apply to Your use of the Licensed Material: 266 | 267 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 268 | to extract, reuse, reproduce, and Share all or a substantial 269 | portion of the contents of the database; 270 | 271 | b. if You include all or a substantial portion of the database 272 | contents in a database in which You have Sui Generis Database 273 | Rights, then the database in which You have Sui Generis Database 274 | Rights (but not its individual contents) is Adapted Material; and 275 | 276 | c. You must comply with the conditions in Section 3(a) if You Share 277 | all or a substantial portion of the contents of the database. 278 | 279 | For the avoidance of doubt, this Section 4 supplements and does not 280 | replace Your obligations under this Public License where the Licensed 281 | Rights include other Copyright and Similar Rights. 282 | 283 | 284 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 285 | 286 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 287 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 288 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 289 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 290 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 291 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 292 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 293 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 294 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 295 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 296 | 297 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 298 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 299 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 300 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 301 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 302 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 303 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 304 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 305 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 306 | 307 | c. The disclaimer of warranties and limitation of liability provided 308 | above shall be interpreted in a manner that, to the extent 309 | possible, most closely approximates an absolute disclaimer and 310 | waiver of all liability. 311 | 312 | 313 | Section 6 -- Term and Termination. 314 | 315 | a. This Public License applies for the term of the Copyright and 316 | Similar Rights licensed here. However, if You fail to comply with 317 | this Public License, then Your rights under this Public License 318 | terminate automatically. 319 | 320 | b. Where Your right to use the Licensed Material has terminated under 321 | Section 6(a), it reinstates: 322 | 323 | 1. automatically as of the date the violation is cured, provided 324 | it is cured within 30 days of Your discovery of the 325 | violation; or 326 | 327 | 2. upon express reinstatement by the Licensor. 328 | 329 | For the avoidance of doubt, this Section 6(b) does not affect any 330 | right the Licensor may have to seek remedies for Your violations 331 | of this Public License. 332 | 333 | c. For the avoidance of doubt, the Licensor may also offer the 334 | Licensed Material under separate terms or conditions or stop 335 | distributing the Licensed Material at any time; however, doing so 336 | will not terminate this Public License. 337 | 338 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 339 | License. 340 | 341 | 342 | Section 7 -- Other Terms and Conditions. 343 | 344 | a. The Licensor shall not be bound by any additional or different 345 | terms or conditions communicated by You unless expressly agreed. 346 | 347 | b. Any arrangements, understandings, or agreements regarding the 348 | Licensed Material not stated herein are separate from and 349 | independent of the terms and conditions of this Public License. 350 | 351 | 352 | Section 8 -- Interpretation. 353 | 354 | a. For the avoidance of doubt, this Public License does not, and 355 | shall not be interpreted to, reduce, limit, restrict, or impose 356 | conditions on any use of the Licensed Material that could lawfully 357 | be made without permission under this Public License. 358 | 359 | b. To the extent possible, if any provision of this Public License is 360 | deemed unenforceable, it shall be automatically reformed to the 361 | minimum extent necessary to make it enforceable. If the provision 362 | cannot be reformed, it shall be severed from this Public License 363 | without affecting the enforceability of the remaining terms and 364 | conditions. 365 | 366 | c. No term or condition of this Public License will be waived and no 367 | failure to comply consented to unless expressly agreed to by the 368 | Licensor. 369 | 370 | d. Nothing in this Public License constitutes or may be interpreted 371 | as a limitation upon, or waiver of, any privileges and immunities 372 | that apply to the Licensor or You, including from the legal 373 | processes of any jurisdiction or authority. 374 | 375 | 376 | ======================================================================= 377 | 378 | Creative Commons is not a party to its public 379 | licenses. Notwithstanding, Creative Commons may elect to apply one of 380 | its public licenses to material it publishes and in those instances 381 | will be considered the “Licensor.” The text of the Creative Commons 382 | public licenses is dedicated to the public domain under the CC0 Public 383 | Domain Dedication. Except for the limited purpose of indicating that 384 | material is shared under a Creative Commons public license or as 385 | otherwise permitted by the Creative Commons policies published at 386 | creativecommons.org/policies, Creative Commons does not authorize the 387 | use of the trademark "Creative Commons" or any other trademark or logo 388 | of Creative Commons without its prior written consent including, 389 | without limitation, in connection with any unauthorized modifications 390 | to any of its public licenses or any other arrangements, 391 | understandings, or agreements concerning use of licensed material. For 392 | the avoidance of doubt, this paragraph does not form part of the 393 | public licenses. 394 | 395 | Creative Commons may be contacted at creativecommons.org. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ![Clean Sky Template](/readme-images/clean-sky-title.jpg) 4 | 5 | **Clean Sky** is a free, beautiful, multi-page template made with Bootstrap 4. It is suitable for all projects - from business websites to personal blogs. The template consists of over 15 fully responsive pages, each one carefully coded and with a clean design. [You can Get it in Bootstrap Studio »](https://bootstrapstudio.io/) 6 | 7 | ## Features 8 | 9 | * Beautiful & responsive design 10 | * Perfect browser support 11 | * Over 15 different pages 12 | * Clean HTML5 and CSS3 code 13 | * Awesome JS widgets 14 | * Easy to customize 15 | * 100% Free to use 16 | 17 | ## Pages 18 | 19 | * Landing 20 | * About us 21 | * Blog Post 22 | * Catalog 23 | * Contact Us 24 | * FAQ 25 | * Features 26 | * Gallery 27 | * Login 28 | * Payments 29 | * Pricing 30 | * Product Page 31 | * Registration 32 | * Service Page 33 | * Shopping Cart 34 | * Slider 35 | * Testimonials 36 | 37 |
38 | 39 | ## Use it in Bootstrap Studio 40 | 41 | This template and many others are available in Bootstrap Studio, the powerful web development tool for building responsive websites. You can drag and drop beautiful components together and create great-looking websites in no time. [Get the app now and supercharge your designs!](https://bootstrapstudio.io) 42 | 43 | [![Bootstrap Studio Banner](/readme-images/bootstrap-studio-banner.jpg)](https://bootstrapstudio.io/) 44 | 45 | [Website](https://bootstrapstudio.io/) · [YouTube Tutorials](https://www.youtube.com/BootstrapStudioApp) · [GitHub](https://github.com/bootstrapstudio) 46 | 47 | ## License 48 | 49 | This project is licensed under the [CC BY-ND 4.0 License](https://creativecommons.org/licenses/by-nd/4.0/). -------------------------------------------------------------------------------- /readme-images/bootstrap-studio-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/readme-images/bootstrap-studio-banner.jpg -------------------------------------------------------------------------------- /readme-images/clean-sky-title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/readme-images/clean-sky-title.jpg -------------------------------------------------------------------------------- /template/about-us.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | About Us - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

About Us

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |
41 |
42 |

John Smith

43 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit.

44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |

Robert Downturn

52 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit.

53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |

Ally Sanders

61 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit.

62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 | 114 | 115 | 116 | 117 | 118 | 119 | -------------------------------------------------------------------------------- /template/assets/css/baguetteBox.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * baguetteBox.js 3 | * @author feimosi 4 | * @version 1.10.0 5 | * @url https://github.com/feimosi/baguetteBox.js 6 | */#baguetteBox-overlay{display:none;opacity:0;position:fixed;overflow:hidden;top:0;left:0;width:100%;height:100%;z-index:1000000;background-color:#222;background-color:rgba(0,0,0,0.8);-webkit-transition:opacity .5s ease;transition:opacity .5s ease}#baguetteBox-overlay.visible{opacity:1}#baguetteBox-overlay .full-image{display:inline-block;position:relative;width:100%;height:100%;text-align:center}#baguetteBox-overlay .full-image figure{display:inline;margin:0;height:100%}#baguetteBox-overlay .full-image img{display:inline-block;width:auto;height:auto;max-height:100%;max-width:100%;vertical-align:middle;-webkit-box-shadow:0 0 8px rgba(0,0,0,0.6);-moz-box-shadow:0 0 8px rgba(0,0,0,0.6);box-shadow:0 0 8px rgba(0,0,0,0.6)}#baguetteBox-overlay .full-image figcaption{display:block;position:absolute;bottom:0;width:100%;text-align:center;line-height:1.8;white-space:normal;color:#ccc;background-color:#000;background-color:rgba(0,0,0,0.6);font-family:sans-serif}#baguetteBox-overlay .full-image:before{content:"";display:inline-block;height:50%;width:1px;margin-right:-1px}#baguetteBox-slider{position:absolute;left:0;top:0;height:100%;width:100%;white-space:nowrap;-webkit-transition:left .4s ease,-webkit-transform .4s ease;transition:left .4s ease,-webkit-transform .4s ease;transition:left .4s ease,transform .4s ease;transition:left .4s ease,transform .4s ease,-webkit-transform .4s ease,-moz-transform .4s ease}#baguetteBox-slider.bounce-from-right{-webkit-animation:bounceFromRight .4s ease-out;animation:bounceFromRight .4s ease-out}#baguetteBox-slider.bounce-from-left{-webkit-animation:bounceFromLeft .4s ease-out;animation:bounceFromLeft .4s ease-out}@-webkit-keyframes bounceFromRight{0%,100%{margin-left:0}50%{margin-left:-30px}}@keyframes bounceFromRight{0%,100%{margin-left:0}50%{margin-left:-30px}}@-webkit-keyframes bounceFromLeft{0%,100%{margin-left:0}50%{margin-left:30px}}@keyframes bounceFromLeft{0%,100%{margin-left:0}50%{margin-left:30px}}.baguetteBox-button#next-button,.baguetteBox-button#previous-button{top:50%;top:calc(50% - 30px);width:44px;height:60px}.baguetteBox-button{position:absolute;cursor:pointer;outline:0;padding:0;margin:0;border:0;-moz-border-radius:15%;border-radius:15%;background-color:#323232;background-color:rgba(50,50,50,0.5);color:#ddd;font:1.6em sans-serif;-webkit-transition:background-color .4s ease;transition:background-color .4s ease}.baguetteBox-button:focus,.baguetteBox-button:hover{background-color:rgba(50,50,50,0.9)}.baguetteBox-button#next-button{right:2%}.baguetteBox-button#previous-button{left:2%}.baguetteBox-button#close-button{top:20px;right:2%;right:calc(2% + 6px);width:30px;height:30px}.baguetteBox-button svg{position:absolute;left:0;top:0}.baguetteBox-spinner{width:40px;height:40px;display:inline-block;position:absolute;top:50%;left:50%;margin-top:-20px;margin-left:-20px}.baguetteBox-double-bounce1,.baguetteBox-double-bounce2{width:100%;height:100%;-moz-border-radius:50%;border-radius:50%;background-color:#fff;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:bounce 2s infinite ease-in-out;animation:bounce 2s infinite ease-in-out}.baguetteBox-double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}@-webkit-keyframes bounce{0%,100%{-webkit-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes bounce{0%,100%{-webkit-transform:scale(0);-moz-transform:scale(0);transform:scale(0)}50%{-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1)}} 7 | -------------------------------------------------------------------------------- /template/assets/css/smoothproducts.min.css: -------------------------------------------------------------------------------- 1 | html,body{height:100%;width:100%}.sp-loading{text-align:center;max-width:270px;padding:15px;border:5px solid #eee;border-radius:3px;font-size:12px;color:#888}.sp-wrap{display:none;line-height:0;font-size:0;background:#eee;border:5px solid #eee;border-radius:3px;position:relative;margin:0 25px 15px 0;float:left;max-width:300px}.sp-thumbs{text-align:left;display:inline-block}.sp-thumbs img{min-height:50px;min-width:50px;max-width:50px}.sp-thumbs a:link,.sp-thumbs a:visited{width:50px;height:50px;overflow:hidden;opacity:.3;display:inline-block;background-size:cover;background-position:center;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-ms-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out}.sp-thumbs a:hover{opacity:1}.sp-thumbs a:active,.sp-current{opacity:1 !important;position:relative}.sp-large{position:relative;overflow:hidden;top:0;left:0}.sp-large a img{max-width:100%;height:auto}.sp-large a{display:block}.sp-zoom{position:absolute;left:-50%;top:-50%;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in;display:none}.sp-lightbox{position:fixed;top:0;left:0;height:100%;width:100%;background:#000;background:rgba(0,0,0,0.9);z-index:1031;display:none;cursor:pointer}.sp-lightbox img{position:absolute;margin:auto;top:0;bottom:0;left:0;right:0;max-width:90%;max-height:90%;border:2px solid #fff}#sp-prev,#sp-next{position:absolute;top:50%;margin-top:-25px;z-index:501;color:#fff;padding:14px;text-decoration:none;background:#000;border-radius:25px;border:2px solid #fff;width:50px;height:50px;box-sizing:border-box;transition:.2s}#sp-prev{left:10px}#sp-prev:before{content:'';border:7px solid transparent;border-right:15px solid #fff;position:absolute;top:16px;left:7px}#sp-next{right:10px}#sp-next:before{content:'';border:7px solid transparent;border-left:15px solid white;position:absolute;top:16px;left:18px}#sp-prev:hover,#sp-next:hover{background:#444}@media screen and (max-width: 400px){.sp-wrap{margin:0 0 15px 0}#sp-prev,#sp-next{top:auto;margin-top:0;bottom:25px}} 2 | -------------------------------------------------------------------------------- /template/assets/img/avatars/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/template/assets/img/avatars/avatar1.jpg -------------------------------------------------------------------------------- /template/assets/img/avatars/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/template/assets/img/avatars/avatar2.jpg -------------------------------------------------------------------------------- /template/assets/img/avatars/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/template/assets/img/avatars/avatar3.jpg -------------------------------------------------------------------------------- /template/assets/img/scenery/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/template/assets/img/scenery/image1.jpg -------------------------------------------------------------------------------- /template/assets/img/scenery/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/template/assets/img/scenery/image3.jpg -------------------------------------------------------------------------------- /template/assets/img/scenery/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/template/assets/img/scenery/image4.jpg -------------------------------------------------------------------------------- /template/assets/img/scenery/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/template/assets/img/scenery/image5.jpg -------------------------------------------------------------------------------- /template/assets/img/scenery/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/template/assets/img/scenery/image6.jpg -------------------------------------------------------------------------------- /template/assets/img/star-empty.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | star-o 4 | 5 | 6 | -------------------------------------------------------------------------------- /template/assets/img/star-half-empty.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | star-half-empty 4 | 5 | 6 | -------------------------------------------------------------------------------- /template/assets/img/star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | star 4 | 5 | 6 | -------------------------------------------------------------------------------- /template/assets/img/tech/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/template/assets/img/tech/image1.jpg -------------------------------------------------------------------------------- /template/assets/img/tech/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/template/assets/img/tech/image2.jpg -------------------------------------------------------------------------------- /template/assets/img/tech/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/template/assets/img/tech/image3.png -------------------------------------------------------------------------------- /template/assets/img/tech/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapstudio/clean-sky-template/550a53ba445707d919297579c82f47c394aabe60/template/assets/img/tech/image4.jpg -------------------------------------------------------------------------------- /template/assets/js/script.min.js: -------------------------------------------------------------------------------- 1 | !function(t){t.fn.extend({smoothproducts:function(){function e(){t(".sp-selected").removeClass("sp-selected"),t(".sp-lightbox").fadeOut(function(){t(this).remove()})}function n(t){return t.match(/url\([\"\']{0,1}(.+)[\"\']{0,1}\)+/i)[1]}t(".sp-loading").hide(),t(".sp-wrap").each(function(){if(t(this).addClass("sp-touch"),t("a",this).length>1){var e,n,s=!!t("a.sp-default",this)[0];t(this).append('
'),t("a",this).each(function(a){var i=t("img",this).attr("src"),o=t(this).attr("href"),r="";(0===a&&!s||t(this).hasClass("sp-default"))&&(r=' class="sp-current"',e=o,n=t("img",this)[0].src),t(this).parents(".sp-wrap").find(".sp-thumbs").append('"),t(this).remove()}),t(".sp-large",this).append(''),t(".sp-wrap").css("display","inline-block")}else t(this).append('
'),t("a",this).appendTo(t(".sp-large",this)).addClass(".sp-current-big"),t(".sp-wrap").css("display","inline-block")}),t(document.body).on("click",".sp-thumbs",function(t){t.preventDefault()}),t(document.body).on("mouseover",function(e){t(".sp-wrap").removeClass("sp-touch").addClass("sp-non-touch"),e.preventDefault()}),t(document.body).on("touchstart",function(){t(".sp-wrap").removeClass("sp-non-touch").addClass("sp-touch")}),t(document.body).on("click",".sp-tb-active a",function(e){e.preventDefault(),t(this).parent().find(".sp-current").removeClass(),t(this).addClass("sp-current"),t(this).parents(".sp-wrap").find(".sp-thumbs").removeClass("sp-tb-active"),t(this).parents(".sp-wrap").find(".sp-zoom").remove();var s=t(this).parents(".sp-wrap").find(".sp-large").height(),a=t(this).parents(".sp-wrap").find(".sp-large").width();t(this).parents(".sp-wrap").find(".sp-large").css({overflow:"hidden",height:s+"px",width:a+"px"}),t(this).addClass("sp-current").parents(".sp-wrap").find(".sp-large a").remove();var i=t(this).parent().find(".sp-current").attr("href"),o=n(t(this).parent().find(".sp-current").css("backgroundImage"));t(this).parents(".sp-wrap").find(".sp-large").html(''),t(this).parents(".sp-wrap").find(".sp-large").hide().fadeIn(250,function(){var e=t(this).parents(".sp-wrap").find(".sp-large img").height();t(this).parents(".sp-wrap").find(".sp-large").animate({height:e},"fast",function(){t(".sp-large").css({height:"auto",width:"auto"})}),t(this).parents(".sp-wrap").find(".sp-thumbs").addClass("sp-tb-active")})}),t(document.body).on("mouseenter",".sp-non-touch .sp-large",function(e){var n=t("a",this).attr("href");t(this).append('
'),t(this).find(".sp-zoom").fadeIn(250),e.preventDefault()}),t(document.body).on("mouseleave",".sp-non-touch .sp-large",function(e){t(this).find(".sp-zoom").fadeOut(250,function(){t(this).remove()}),e.preventDefault()}),t(document.body).on("click",".sp-non-touch .sp-zoom",function(e){var n=t(this).html(),s=t(this).parents(".sp-wrap").find(".sp-thumbs a").length,a=t(this).parents(".sp-wrap").find(".sp-thumbs .sp-current").index()+1;t(this).parents(".sp-wrap").addClass("sp-selected"),t("body").append("
"+n+"
"),s>1&&(t(".sp-lightbox").append(""),1==a?t("#sp-prev").css("opacity",".1"):a==s&&t("#sp-next").css("opacity",".1")),t(".sp-lightbox").fadeIn(),e.preventDefault()}),t(document.body).on("click",".sp-large a",function(e){var n=t(this).attr("href"),s=t(this).parents(".sp-wrap").find(".sp-thumbs a").length,a=t(this).parents(".sp-wrap").find(".sp-thumbs .sp-current").index()+1;t(this).parents(".sp-wrap").addClass("sp-selected"),t("body").append('
'),s>1&&(t(".sp-lightbox").append(""),1==a?t("#sp-prev").css("opacity",".1"):a==s&&t("#sp-next").css("opacity",".1")),t(".sp-lightbox").fadeIn(),e.preventDefault()}),t(document.body).on("click","#sp-next",function(e){e.stopPropagation();var s=t(".sp-lightbox").data("currenteq"),a=t(".sp-selected .sp-thumbs a").length;if(s>=a);else{var i=s+1,o=t(".sp-selected .sp-thumbs").find("a:eq("+s+")").attr("href"),r=n(t(".sp-selected .sp-thumbs").find("a:eq("+s+")").css("backgroundImage"));s==a-1&&t("#sp-next").css("opacity",".1"),t("#sp-prev").css("opacity","1"),t(".sp-selected .sp-current").removeClass(),t(".sp-selected .sp-thumbs a:eq("+s+")").addClass("sp-current"),t(".sp-selected .sp-large").empty().append("'),t(".sp-lightbox img").fadeOut(250,function(){t(this).remove(),t(".sp-lightbox").data("currenteq",i).append(''),t(".sp-lightbox img").hide().fadeIn(250)})}e.preventDefault()}),t(document.body).on("click","#sp-prev",function(e){e.stopPropagation();var s=t(".sp-lightbox").data("currenteq"),s=s-1;if(0>=s);else{1==s&&t("#sp-prev").css("opacity",".1");var a=s-1,i=t(".sp-selected .sp-thumbs").find("a:eq("+a+")").attr("href"),o=n(t(".sp-selected .sp-thumbs").find("a:eq("+a+")").css("backgroundImage"));t("#sp-next").css("opacity","1"),t(".sp-selected .sp-current").removeClass(),t(".sp-selected .sp-thumbs a:eq("+a+")").addClass("sp-current"),t(".sp-selected .sp-large").empty().append("'),t(".sp-lightbox img").fadeOut(250,function(){t(this).remove(),t(".sp-lightbox").data("currenteq",s).append(''),t(".sp-lightbox img").hide().fadeIn(250)})}e.preventDefault()}),t(document.body).on("click",".sp-lightbox",function(){e()}),t(document).keydown(function(t){return 27==t.keyCode?(e(),!1):void 0}),t(".sp-large").mousemove(function(e){var n=t(this).width(),s=t(this).height(),a=t(this).find(".sp-zoom").width(),i=t(this).find(".sp-zoom").height(),o=t(this).parent().offset(),r=e.pageX-o.left,l=e.pageY-o.top,c=Math.floor(r*(n-a)/n),u=Math.floor(l*(s-i)/s);t(this).find(".sp-zoom").css({left:c,top:u})})}})}(jQuery),function(t,e){"use strict";"function"==typeof define&&define.amd?define(e):"object"==typeof exports?module.exports=e():t.baguetteBox=e()}(this,function(){"use strict";function t(t,n){j.transforms=w(),j.svg=x(),a(),s(t),e(t,n)}function e(t,e){var n=document.querySelectorAll(t),s={galleries:[],nodeList:n};V[t]=s,[].forEach.call(n,function(t){e&&e.filter&&($=e.filter);var n=[];if(n="A"===t.tagName?[t]:t.getElementsByTagName("a"),n=[].filter.call(n,function(t){return $.test(t.href)}),0!==n.length){var a=[];[].forEach.call(n,function(t,n){var s=function(t){t.preventDefault?t.preventDefault():t.returnValue=!1,l(a,e),u(n)},i={eventHandler:s,imageElement:t};B(t,"click",s),a.push(i)}),s.galleries.push(a)}})}function n(){for(var t in V)V.hasOwnProperty(t)&&s(t)}function s(t){if(V.hasOwnProperty(t)){var e=V[t].galleries;[].forEach.call(e,function(t){[].forEach.call(t,function(t){E(t.imageElement,"click",t.eventHandler)}),M===t&&(M=[])}),delete V[t]}}function a(){return(I=T("baguetteBox-overlay"))?(A=T("baguetteBox-slider"),P=T("previous-button"),S=T("next-button"),void(D=T("close-button"))):(I=q("div"),I.setAttribute("role","dialog"),I.id="baguetteBox-overlay",document.getElementsByTagName("body")[0].appendChild(I),A=q("div"),A.id="baguetteBox-slider",I.appendChild(A),P=q("button"),P.setAttribute("type","button"),P.id="previous-button",P.setAttribute("aria-label","Previous"),P.innerHTML=j.svg?z:"<",I.appendChild(P),S=q("button"),S.setAttribute("type","button"),S.id="next-button",S.setAttribute("aria-label","Next"),S.innerHTML=j.svg?F:">",I.appendChild(S),D=q("button"),D.setAttribute("type","button"),D.id="close-button",D.setAttribute("aria-label","Close"),D.innerHTML=j.svg?H:"×",I.appendChild(D),P.className=S.className=D.className="baguetteBox-button",void o())}function i(t){switch(t.keyCode){case 37:v();break;case 39:b();break;case 27:h()}}function o(){B(I,"click",W),B(P,"click",G),B(S,"click",J),B(D,"click",K),B(I,"touchstart",Z),B(I,"touchmove",_),B(I,"touchend",tt),B(document,"focus",et,!0)}function r(){E(I,"click",W),E(P,"click",G),E(S,"click",J),E(D,"click",K),E(I,"touchstart",Z),E(I,"touchmove",_),E(I,"touchend",tt),E(document,"focus",et,!0)}function l(t,e){if(M!==t){for(M=t,c(e);A.firstChild;)A.removeChild(A.firstChild);Q.length=0;for(var n,s=[],a=[],i=0;i
',L.captions&&i){var l=q("figcaption");l.id="baguetteBox-figcaption-"+t,l.innerHTML=i,r.appendChild(l)}n.appendChild(r);var c=q("img");c.onload=function(){var n=document.querySelector("#baguette-img-"+t+" .baguetteBox-spinner");r.removeChild(n),!L.async&&e&&e()},c.setAttribute("src",o),c.alt=a?a.alt||"":"",L.titleTag&&i&&(c.title=i),r.appendChild(c),L.async&&e&&e()}}function m(t){var e=t.href;if(t.dataset){var n=[];for(var s in t.dataset)"at-"!==s.substring(0,3)||isNaN(s.substring(3))||(n[s.replace("at-","")]=t.dataset[s]);for(var a=Object.keys(n).sort(function(t,e){return parseInt(t,10)=1?(O--,y(),C(O),t=!0):L.animation&&(A.className="bounce-from-left",setTimeout(function(){A.className=""},400),t=!1),L.onChange&&L.onChange(O,Q.length),t}function y(){var t=100*-O+"%";"fadeIn"===L.animation?(A.style.opacity=0,setTimeout(function(){j.transforms?A.style.transform=A.style.webkitTransform="translate3d("+t+",0,0)":A.style.left=t,A.style.opacity=1},400)):j.transforms?A.style.transform=A.style.webkitTransform="translate3d("+t+",0,0)":A.style.left=t}function w(){var t=q("div");return void 0!==t.style.perspective||void 0!==t.style.webkitPerspective}function x(){var t=q("div");return t.innerHTML="","http://www.w3.org/2000/svg"===(t.firstChild&&t.firstChild.namespaceURI)}function k(t){t-O>=L.preload||g(t+1,function(){k(t+1)})}function C(t){O-t>=L.preload||g(t-1,function(){C(t-1)})}function B(t,e,n,s){t.addEventListener?t.addEventListener(e,n,s):t.attachEvent("on"+e,n)}function E(t,e,n,s){t.removeEventListener?t.removeEventListener(e,n,s):t.detachEvent("on"+e,n)}function T(t){return document.getElementById(t)}function q(t){return document.createElement(t)}function N(){r(),n(),E(document,"keydown",i),document.getElementsByTagName("body")[0].removeChild(document.getElementById("baguetteBox-overlay")),V={},M=[],O=0}var I,A,P,S,D,z='',F='',H='',L={},Y={captions:!0,fullScreen:!1,noScrollbars:!1,titleTag:!1,buttons:"auto",async:!1,preload:2,animation:"slideIn",afterShow:null,afterHide:null,onChange:null,overlayBackgroundColor:"rgba(0,0,0,.8)"},j={},M=[],O=0,X={},R=!1,$=/.+\.(gif|jpe?g|png|webp)/i,V={},Q=[],U=null,W=function(t){-1!==t.target.id.indexOf("baguette-img")&&h()},G=function(t){t.stopPropagation?t.stopPropagation():t.cancelBubble=!0,v()},J=function(t){t.stopPropagation?t.stopPropagation():t.cancelBubble=!0,b()},K=function(t){t.stopPropagation?t.stopPropagation():t.cancelBubble=!0,h()},Z=function(t){X.count++,X.count>1&&(X.multitouch=!0),X.startX=t.changedTouches[0].pageX,X.startY=t.changedTouches[0].pageY},_=function(t){if(!R&&!X.multitouch){t.preventDefault?t.preventDefault():t.returnValue=!1;var e=t.touches[0]||t.changedTouches[0];e.pageX-X.startX>40?(R=!0,v()):e.pageX-X.startX<-40?(R=!0,b()):X.startY-e.pageY>100&&h()}},tt=function(){X.count--,X.count<=0&&(X.multitouch=!1),R=!1},et=function(t){"block"!==I.style.display||I.contains(t.target)||(t.stopPropagation(),p())};return[].forEach||(Array.prototype.forEach=function(t,e){for(var n=0;n0&&baguetteBox.run(".clean-gallery",{animation:"slideIn"}),$(".clean-product").length>0&&$(window).on("load",function(){$(".sp-wrap").smoothproducts()}); -------------------------------------------------------------------------------- /template/blog-post-list.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Blog - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Blog Post List

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |
41 |
42 |
43 |

Lorem Ipsum dolor sit amet

44 |
Jan 16, 2018 by John Smith
45 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis 46 | vitae leo.

47 |
48 |
49 |
50 |
51 |
52 |
53 |

Lorem Ipsum dolor sit amet

54 |
Jan 16, 2018 by John Smith
55 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis 56 | vitae leo.

57 |
58 |
59 |
60 |
61 |
62 |
63 |

Lorem Ipsum dolor sit amet

64 |
Jan 16, 2018 by John Smith
65 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis 66 | vitae leo.

67 |
68 |
69 |
70 |
71 |
72 |
73 |

Lorem Ipsum dolor sit amet

74 |
Jan 16, 2018 by John Smith
75 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis 76 | vitae leo.

77 |
78 |
79 |
80 |
81 |
82 |
83 | 127 | 128 | 129 | 130 | 131 | 132 | -------------------------------------------------------------------------------- /template/blog-post.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Blog Post - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |
36 |
37 |

Lorem Ipsum dolor

38 | 39 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae 40 | leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

41 |
A generic square placeholder image with rounded corners in a figure. 42 |
Lorem ipsum dolor
43 |
44 |

Lorem Ipsum

45 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae 46 | leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

47 |
48 |
49 |
A generic square placeholder image with rounded corners in a figure. 50 |
Lorem Ipsum dolor
51 |
52 |
53 |
54 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis 55 | vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. 

56 |
57 |
58 |

Lorem Ipsum dolor

59 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae 60 | leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

61 |
62 |
63 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis 64 | vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

65 |
66 |
67 |
A generic square placeholder image with rounded corners in a figure. 68 |
Lorem Ipsum dolor
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 | 121 | 122 | 123 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /template/catalog-page.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Catalog - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Catalog Page

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |

Categories

45 |
46 |
47 |
48 |
49 |
50 |
51 |

Brands

52 |
53 |
54 |
55 |
56 |
57 |

OS

58 |
59 |
60 |
61 |
62 |
63 |
64 |
66 |
67 |
68 |

Categories

69 |
70 |
71 |
72 |
73 |
74 |
75 |

Brands

76 |
77 |
78 |
79 |
80 |
81 |

OS

82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 | 96 |
97 |
98 |
99 |

$100

100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 | 108 |
109 |
110 |
111 |

$100

112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 | 120 |
121 |
122 |
123 |

$100

124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 | 132 |
133 |
134 |
135 |

$100

136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 | 144 |
145 |
146 |
147 |

$100

148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 | 156 |
157 |
158 |
159 |

$100

160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 | 168 |
169 |
170 |
171 |

$100

172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 | 180 |
181 |
182 |
183 |

$100

184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 | 192 |
193 |
194 |
195 |

$100

196 |
197 |
198 |
199 |
200 |
201 | 210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 | 261 | 262 | 263 | 264 | 265 | 266 | -------------------------------------------------------------------------------- /template/contact-us.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Contact Us - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Contact Us

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 | 92 | 93 | 94 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /template/faq.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | FAQ - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

FAQ

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

41 |
42 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

43 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

44 |
45 |
46 |
47 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

48 |
49 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

50 |
51 |
52 |
53 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

54 |
55 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing 56 | elit.

57 |
58 |
59 |
60 |
61 |
62 |
63 | 107 | 108 | 109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /template/features.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Features - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Features

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |

Bootstrap 4

41 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

42 |
43 |
44 |

Customizable

45 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

46 |
47 |
48 |

Responsive

49 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

50 |
51 |
52 |

All Browser Compatibility

53 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

54 |
55 |
56 |
57 |
58 |
59 | 103 | 104 | 105 | 106 | 107 | 108 | -------------------------------------------------------------------------------- /template/gallery.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Gallery - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 | 51 |
52 | 96 | 97 | 98 | 99 | 100 | 101 | -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Home - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |

Lorem ipsum dolor sit amet.

35 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

36 |
37 |
38 |
39 |
40 |

Info

41 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

42 |
43 |
44 |
45 |
46 |

Lorem impsum dolor sit amet

47 |
48 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Lorem ipsum dolor sit amet, consectetur adipisicing elit.

49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |

Features

57 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

58 |
59 |
60 |
61 |

Bootstrap 4

62 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

63 |
64 |
65 |

Customizable

66 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

67 |
68 |
69 |

Responsive

70 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

71 |
72 |
73 |

All Browser Compatibility

74 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |

Slider

83 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

84 |
85 | 99 |
100 |
101 |
102 |
103 |
104 |

About Us

105 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

106 |
107 |
108 |
109 |
110 |
111 |

John Smith

112 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit.

113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |

Robert Downturn

121 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit.

122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |

Ally Sanders

130 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit.

131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 | 183 | 184 | 185 | 186 | 187 | 188 | -------------------------------------------------------------------------------- /template/login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Login - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Log In

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 | 91 | 92 | 93 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /template/payment-page.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Payment - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Payment

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |

Checkout

41 |
$200 42 |

Product 1

43 |

Lorem ipsum dolor sit amet

44 |
45 |
$120 46 |

Product 2

47 |

Lorem ipsum dolor sit amet

48 |
49 |
Total$320
50 |
51 |
52 |

Credit Card Details

53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 | 121 | 122 | 123 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /template/pricing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Pricing - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Pricing Table

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |
41 |
42 |

BASIC

43 |
44 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

45 |
46 |

Full Support: No

47 |

Duration: 30 Days

48 |

Storage: 10GB

49 |
50 |
51 |

$25

52 |
53 |
54 |
55 |
56 |
Best Value
57 |
58 |

PRO

59 |
60 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

61 |
62 |

Full Support: Yes

63 |

Duration: 60 Days

64 |

Storage: 50GB

65 |
66 |
67 |

$50

68 |
69 |
70 |
71 |
72 |
73 |

PREMIUM

74 |
75 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

76 |
77 |

Full Support: Yes

78 |

Duration: 120 Days

79 |

Storage: 150GB

80 |
81 |
82 |

$150

83 |
84 |
85 |
86 |
87 |
88 |
89 | 133 | 134 | 135 | 136 | 137 | 138 | -------------------------------------------------------------------------------- /template/product-page.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Product - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Product Page

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |
41 |
42 | 45 |
46 |
47 |
48 |

Lorem Ipsum

49 |
50 |
51 |

$300.00

52 |
53 |
54 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec augue nunc, pretium at augue at, convallis pellentesque ipsum. Vestibulum diam risus, sagittis at fringilla at, pulvinar vel risus. Vestibulum dignissim 55 | eu nulla eu imperdiet. Morbi mollis tellus a nunc vestibulum consequat. Quisque tristique elit et nibh dapibus sodales. Nam sollicitudin a urna sed iaculis.

56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 | 68 |
69 |
70 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit.Lorem ipsum dolor sit amet, consectetur adipiscing 71 | elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

72 |
73 |
74 |
75 |
76 |
77 |

Lorem Ipsum

78 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

79 |
80 |
81 |
82 |
83 |

Lorem Ipsum

84 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 |
Display5.2"
Camera12MP
RAM4GB
OSiOS
113 |
114 |
115 |
116 |
117 |
118 |
119 |

Incredible product

John Smith, 20 Jan 2018 120 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec augue nunc, pretium at augue at, convallis pellentesque ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

121 |
122 |
123 |
124 |
125 |
126 |

Incredible product

John Smith, 20 Jan 2018 127 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec augue nunc, pretium at augue at, convallis pellentesque ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

128 |
129 |
130 |
131 |
132 |
133 |

Incredible product

John Smith, 20 Jan 2018 134 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec augue nunc, pretium at augue at, convallis pellentesque ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

135 |
136 |
137 |
138 |
139 |
140 |
141 | 175 |
176 |
177 |
178 |
179 | 223 | 224 | 225 | 226 | 227 | 228 | -------------------------------------------------------------------------------- /template/registration.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Register - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Registration

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | 89 | 90 | 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /template/service-page.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Services - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Service Page

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |
41 |
42 |

Lorem Ipsum

43 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in.

44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |

Lorem Ipsum

52 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in.

53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |

Lorem Ipsum

61 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in.

62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |

Lorem Ipsum

70 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in.

71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |

Lorem Ipsum

79 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in.

80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |

Lorem Ipsum

88 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in.

89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 | 141 | 142 | 143 | 144 | 145 | 146 | -------------------------------------------------------------------------------- /template/shopping-cart.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Shopping Cart - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Shopping Cart

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
Lorem Ipsum dolor 48 |
49 |
Display: 5 inch
50 |
RAM: 4GB
51 |
Memory: 32GB
52 |
53 |
54 |
55 |
$120
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
Lorem Ipsum dolor 64 |
65 |
Display: 5 inch
66 |
RAM: 4GB
67 |
Memory: 32GB
68 |
69 |
70 |
71 |
$120
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
Lorem Ipsum dolor 80 |
81 |
Display: 5 inch
82 |
RAM: 4GB
83 |
Memory: 32GB
84 |
85 |
86 |
87 |
$120
88 |
89 |
90 |
91 |
92 |
93 |
94 |

Summary

95 |

Subtotal$360

96 |

Discount$0

97 |

Shipping$0

98 |

Total$360

99 |
100 |
101 |
102 |
103 |
104 |
105 | 149 | 150 | 151 | 152 | 153 | 154 | -------------------------------------------------------------------------------- /template/slider.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Slider - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Slider

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 | 52 |
53 |
54 |
55 | 99 | 100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /template/testimonials.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Testimonials - Clean Sky 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 31 |
32 |
33 |
34 |
35 |

Testimonials

36 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.

37 |
38 |
39 |
40 |
41 |
42 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec augue nunc, pretium at augue at, convallis pellentesque ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

43 |

John Smith

44 |

Founder of Something

45 |
46 |
47 |
48 |
49 |
50 |
51 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec augue nunc, pretium at augue at, convallis pellentesque ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

52 |

John Smith

53 |

Founder of Something

54 |
55 |
56 |
57 |
58 |
59 |
60 |

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec augue nunc, pretium at augue at, convallis pellentesque ipsum. Lorem ipsum dolor sit amet, consectetur adipiscing elit.

61 |

John Smith

62 |

Founder of Something

63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 | 114 | 115 | 116 | 117 | 118 | 119 | --------------------------------------------------------------------------------