Skip to content

Commit 879d945

Browse files
author
felix
committed
Less to SCSS, split up sections
1 parent 892240c commit 879d945

20 files changed

+406
-846
lines changed

Diff for: .gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site/
2+
.sass-cache/

Diff for: LICENCE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Felix Volny
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

Diff for: LICENSE renamed to NOTICE

File renamed without changes.

Diff for: README.md

-26
Original file line numberDiff line numberDiff line change
@@ -1,26 +0,0 @@
1-
# [Start Bootstrap](http://startbootstrap.com/) - [Creative](http://startbootstrap.com/template-overviews/creative/)
2-
3-
[Creative](http://startbootstrap.com/template-overviews/creative/) is a one page creative theme for [Bootstrap](http://getbootstrap.com/) created by [Start Bootstrap](http://startbootstrap.com/).
4-
5-
## Getting Started
6-
7-
To use this theme, choose one of the following options to get started:
8-
* Download the latest release on Start Bootstrap
9-
* Fork this repository on GitHub
10-
11-
## Bugs and Issues
12-
13-
Have a bug or an issue with this theme? [Open a new issue](https://github.com/IronSummitMedia/startbootstrap-creative/issues) here on GitHub or leave a comment on the [template overview page at Start Bootstrap](http://startbootstrap.com/template-overviews/creative/).
14-
15-
## Creator
16-
17-
Start Bootstrap was created by and is maintained by **David Miller**, Managing Partner at [Iron Summit Media Strategies](http://www.ironsummitmedia.com/).
18-
19-
* https://twitter.com/davidmillerskt
20-
* https://github.com/davidtmiller
21-
22-
Start Bootstrap is based on the [Bootstrap](http://getbootstrap.com/) framework created by [Mark Otto](https://twitter.com/mdo) and [Jacob Thorton](https://twitter.com/fat).
23-
24-
## Copyright and License
25-
26-
Copyright 2013-2015 Iron Summit Media Strategies, LLC. Code released under the [Apache 2.0](https://github.com/IronSummitMedia/startbootstrap-creative/blob/gh-pages/LICENSE) license.

Diff for: _includes/aside.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<aside class="bg-dark">
2+
<div class="container text-center">
3+
<div class="call-to-action">
4+
<h2>Free Download at Start Bootstrap!</h2>
5+
<a href="#" class="btn btn-default btn-xl wow tada">Download Now!</a>
6+
</div>
7+
</div>
8+
</aside>

Diff for: _includes/call-to-action.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<section class="bg-primary" id="about">
2+
<div class="container">
3+
<div class="row">
4+
<div class="col-lg-8 col-lg-offset-2 text-center">
5+
<h2 class="section-heading">We've got what you need!</h2>
6+
<hr class="light">
7+
<p class="text-faded">Start Bootstrap has everything you need to get your new website up and running in no time! All of the templates and themes on Start Bootstrap are open source, free to download, and easy to use. No strings attached!</p>
8+
<a href="#" class="btn btn-default btn-xl">Get Started!</a>
9+
</div>
10+
</div>
11+
</div>
12+
</section>

Diff for: _includes/contact.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<section id="contact">
2+
<div class="container">
3+
<div class="row">
4+
<div class="col-lg-8 col-lg-offset-2 text-center">
5+
<h2 class="section-heading">Let's Get In Touch!</h2>
6+
<hr class="primary">
7+
<p>Ready to start your next project with us? That's great! Give us a call or send us an email and we will get back to you as soon as possible!</p>
8+
</div>
9+
<div class="col-lg-4 col-lg-offset-2 text-center">
10+
<i class="fa fa-phone fa-3x wow bounceIn"></i>
11+
<p>123-456-6789</p>
12+
</div>
13+
<div class="col-lg-4 text-center">
14+
<i class="fa fa-envelope-o fa-3x wow bounceIn" data-wow-delay=".1s"></i>
15+
<p><a href="mailto:[email protected]">[email protected]</a></p>
16+
</div>
17+
</div>
18+
</div>
19+
</section>

Diff for: _includes/head.html

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<head>
2+
3+
<meta charset="utf-8">
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<meta name="description" content="">
7+
<meta name="author" content="">
8+
9+
<title>Creative - Start Bootstrap Theme</title>
10+
11+
<!-- Bootstrap Core CSS -->
12+
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
13+
14+
<!-- Custom Fonts -->
15+
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
16+
<link href='http://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
17+
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css" type="text/css">
18+
19+
<!-- Plugin CSS -->
20+
<link rel="stylesheet" href="css/animate.min.css" type="text/css">
21+
22+
<!-- Custom CSS -->
23+
<link rel="stylesheet" href="css/main.css" type="text/css">
24+
25+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
26+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
27+
<!--[if lt IE 9]>
28+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
29+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
30+
<![endif]-->
31+
32+
</head>

Diff for: _includes/header.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<header>
2+
<div class="header-content">
3+
<div class="header-content-inner">
4+
<h1>Your Favorite Source of Free Bootstrap Themes</h1>
5+
<hr>
6+
<p>Start Bootstrap can help you build better websites using the Bootstrap CSS framework! Just download your template and start going, no strings attached!</p>
7+
<a href="#about" class="btn btn-primary btn-xl page-scroll">Find Out More</a>
8+
</div>
9+
</div>
10+
</header>

Diff for: _includes/nav.html

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
2+
<div class="container-fluid">
3+
<!-- Brand and toggle get grouped for better mobile display -->
4+
<div class="navbar-header">
5+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
6+
<span class="sr-only">Toggle navigation</span>
7+
<span class="icon-bar"></span>
8+
<span class="icon-bar"></span>
9+
<span class="icon-bar"></span>
10+
</button>
11+
<a class="navbar-brand page-scroll" href="#page-top">Start Bootstrap</a>
12+
</div>
13+
14+
<!-- Collect the nav links, forms, and other content for toggling -->
15+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
16+
<ul class="nav navbar-nav navbar-right">
17+
<li>
18+
<a class="page-scroll" href="#about">About</a>
19+
</li>
20+
<li>
21+
<a class="page-scroll" href="#services">Services</a>
22+
</li>
23+
<li>
24+
<a class="page-scroll" href="#portfolio">Portfolio</a>
25+
</li>
26+
<li>
27+
<a class="page-scroll" href="#contact">Contact</a>
28+
</li>
29+
</ul>
30+
</div>
31+
<!-- /.navbar-collapse -->
32+
</div>
33+
<!-- /.container-fluid -->
34+
</nav>

Diff for: _includes/portfolio.html

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<section class="no-padding" id="portfolio">
2+
<div class="container-fluid">
3+
<div class="row no-gutter">
4+
<div class="col-lg-4 col-sm-6">
5+
<a href="#" class="portfolio-box">
6+
<img src="img/portfolio/1.jpg" class="img-responsive" alt="">
7+
<div class="portfolio-box-caption">
8+
<div class="portfolio-box-caption-content">
9+
<div class="project-category text-faded">
10+
Category
11+
</div>
12+
<div class="project-name">
13+
Project Name
14+
</div>
15+
</div>
16+
</div>
17+
</a>
18+
</div>
19+
<div class="col-lg-4 col-sm-6">
20+
<a href="#" class="portfolio-box">
21+
<img src="img/portfolio/2.jpg" class="img-responsive" alt="">
22+
<div class="portfolio-box-caption">
23+
<div class="portfolio-box-caption-content">
24+
<div class="project-category text-faded">
25+
Category
26+
</div>
27+
<div class="project-name">
28+
Project Name
29+
</div>
30+
</div>
31+
</div>
32+
</a>
33+
</div>
34+
<div class="col-lg-4 col-sm-6">
35+
<a href="#" class="portfolio-box">
36+
<img src="img/portfolio/3.jpg" class="img-responsive" alt="">
37+
<div class="portfolio-box-caption">
38+
<div class="portfolio-box-caption-content">
39+
<div class="project-category text-faded">
40+
Category
41+
</div>
42+
<div class="project-name">
43+
Project Name
44+
</div>
45+
</div>
46+
</div>
47+
</a>
48+
</div>
49+
<div class="col-lg-4 col-sm-6">
50+
<a href="#" class="portfolio-box">
51+
<img src="img/portfolio/4.jpg" class="img-responsive" alt="">
52+
<div class="portfolio-box-caption">
53+
<div class="portfolio-box-caption-content">
54+
<div class="project-category text-faded">
55+
Category
56+
</div>
57+
<div class="project-name">
58+
Project Name
59+
</div>
60+
</div>
61+
</div>
62+
</a>
63+
</div>
64+
<div class="col-lg-4 col-sm-6">
65+
<a href="#" class="portfolio-box">
66+
<img src="img/portfolio/5.jpg" class="img-responsive" alt="">
67+
<div class="portfolio-box-caption">
68+
<div class="portfolio-box-caption-content">
69+
<div class="project-category text-faded">
70+
Category
71+
</div>
72+
<div class="project-name">
73+
Project Name
74+
</div>
75+
</div>
76+
</div>
77+
</a>
78+
</div>
79+
<div class="col-lg-4 col-sm-6">
80+
<a href="#" class="portfolio-box">
81+
<img src="img/portfolio/6.jpg" class="img-responsive" alt="">
82+
<div class="portfolio-box-caption">
83+
<div class="portfolio-box-caption-content">
84+
<div class="project-category text-faded">
85+
Category
86+
</div>
87+
<div class="project-name">
88+
Project Name
89+
</div>
90+
</div>
91+
</div>
92+
</a>
93+
</div>
94+
</div>
95+
</div>
96+
</section>

Diff for: _includes/scripts.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- jQuery -->
2+
<script src="js/jquery.js"></script>
3+
4+
<!-- Bootstrap Core JavaScript -->
5+
<script src="js/bootstrap.min.js"></script>
6+
7+
<!-- Plugin JavaScript -->
8+
<script src="js/jquery.easing.min.js"></script>
9+
<script src="js/jquery.fittext.js"></script>
10+
<script src="js/wow.min.js"></script>
11+
12+
<!-- Custom Theme JavaScript -->
13+
<script src="js/creative.js"></script>

Diff for: _includes/services.html

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<section id="services">
2+
<div class="container">
3+
<div class="row">
4+
<div class="col-lg-12 text-center">
5+
<h2 class="section-heading">At Your Service</h2>
6+
<hr class="primary">
7+
</div>
8+
</div>
9+
</div>
10+
<div class="container">
11+
<div class="row">
12+
<div class="col-lg-3 col-md-6 text-center">
13+
<div class="service-box">
14+
<i class="fa fa-4x fa-diamond wow bounceIn text-primary"></i>
15+
<h3>Sturdy Templates</h3>
16+
<p class="text-muted">Our templates are updated regularly so they don't break.</p>
17+
</div>
18+
</div>
19+
<div class="col-lg-3 col-md-6 text-center">
20+
<div class="service-box">
21+
<i class="fa fa-4x fa-paper-plane wow bounceIn text-primary" data-wow-delay=".1s"></i>
22+
<h3>Ready to Ship</h3>
23+
<p class="text-muted">You can use this theme as is, or you can make changes!</p>
24+
</div>
25+
</div>
26+
<div class="col-lg-3 col-md-6 text-center">
27+
<div class="service-box">
28+
<i class="fa fa-4x fa-newspaper-o wow bounceIn text-primary" data-wow-delay=".2s"></i>
29+
<h3>Up to Date</h3>
30+
<p class="text-muted">We update dependencies to keep things fresh.</p>
31+
</div>
32+
</div>
33+
<div class="col-lg-3 col-md-6 text-center">
34+
<div class="service-box">
35+
<i class="fa fa-4x fa-heart wow bounceIn text-primary" data-wow-delay=".3s"></i>
36+
<h3>Made with Love</h3>
37+
<p class="text-muted">You have to make your websites with love these days!</p>
38+
</div>
39+
</div>
40+
</div>
41+
</div>
42+
</section>

Diff for: _layouts/front.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
{% include head.html %}
5+
{% include nav.html %}
6+
{% include header.html %}
7+
{% include call-to-action.html %}
8+
{% include services.html %}
9+
{% include portfolio.html %}
10+
{% include aside.html %}
11+
{% include contact.html %}
12+
{% include scripts.html %}
13+
14+
</html>

0 commit comments

Comments
 (0)