Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit e67dd64

Browse files
Add files via upload
1 parent 02379a1 commit e67dd64

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+31363
-1
lines changed

‎README.md‎

Lines changed: 1603 additions & 1 deletion
Large diffs are not rendered by default.

‎package.json‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "blog",
3+
"version": "0.1.0",
4+
"private": true,
5+
"dependencies": {
6+
"react": "^15.4.2",
7+
"react-dom": "^15.4.2"
8+
},
9+
"devDependencies": {
10+
"react-scripts": "0.9.4"
11+
},
12+
"scripts": {
13+
"start": "react-scripts start",
14+
"build": "react-scripts build",
15+
"test": "react-scripts test --env=jsdom",
16+
"eject": "react-scripts eject"
17+
}
18+
}

‎public/README.md‎

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# [Start Bootstrap](http://startbootstrap.com/) - [Clean Blog](http://startbootstrap.com/template-overviews/clean-blog/)
2+
3+
[Clean Blog](http://startbootstrap.com/template-overviews/clean-blog/) is a stylish, responsive blog theme for [Bootstrap](http://getbootstrap.com/) created by [Start Bootstrap](http://startbootstrap.com/). This theme features a blog homepage, about page, contact page, and an example post page along with a working PHP contact form.
4+
5+
## Getting Started
6+
7+
To begin using this template, choose one of the following options to get started:
8+
* [Download the latest release on Start Bootstrap](http://startbootstrap.com/template-overviews/clean-blog/)
9+
* Clone the repo: `git clone https://github.com/BlackrockDigital/startbootstrap-clean-blog.git`
10+
* Fork the repo
11+
12+
## Bugs and Issues
13+
14+
Have a bug or an issue with this template? [Open a new issue](https://github.com/BlackrockDigital/startbootstrap-clean-blog/issues) here on GitHub or leave a comment on the [template overview page at Start Bootstrap](http://startbootstrap.com/template-overviews/clean-blog/).
15+
16+
## Creator
17+
18+
Start Bootstrap was created by and is maintained by **[David Miller](http://davidmiller.io/)**, Owner of [Blackrock Digital](http://blackrockdigital.io/).
19+
20+
* https://twitter.com/davidmillerskt
21+
* https://github.com/davidtmiller
22+
23+
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).
24+
25+
## Copyright and License
26+
27+
Copyright 2013-2016 Blackrock Digital LLC. Code released under the [MIT](https://github.com/BlackrockDigital/startbootstrap-clean-blog/blob/gh-pages/LICENSE) license.

‎public/about.html‎

Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
6+
<meta charset="utf-8">
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<meta name="description" content="">
10+
<meta name="author" content="">
11+
12+
<title>Clean Blog - About</title>
13+
14+
<!-- Bootstrap Core CSS -->
15+
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
16+
17+
<!-- Theme CSS -->
18+
<link href="css/clean-blog.min.css" rel="stylesheet">
19+
20+
<!-- Custom Fonts -->
21+
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
22+
<link href='https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
23+
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' 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>
33+
34+
<body>
35+
36+
<!-- Navigation -->
37+
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
38+
<div class="container-fluid">
39+
<!-- Brand and toggle get grouped for better mobile display -->
40+
<div class="navbar-header page-scroll">
41+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
42+
<span class="sr-only">Toggle navigation</span>
43+
Menu <i class="fa fa-bars"></i>
44+
</button>
45+
<a class="navbar-brand" href="index.html">Start Bootstrap</a>
46+
</div>
47+
48+
<!-- Collect the nav links, forms, and other content for toggling -->
49+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
50+
<ul class="nav navbar-nav navbar-right">
51+
<li>
52+
<a href="index.html">Home</a>
53+
</li>
54+
<li>
55+
<a href="about.html">About</a>
56+
</li>
57+
<li>
58+
<a href="post.html">Sample Post</a>
59+
</li>
60+
<li>
61+
<a href="contact.html">Contact</a>
62+
</li>
63+
</ul>
64+
</div>
65+
<!-- /.navbar-collapse -->
66+
</div>
67+
<!-- /.container -->
68+
</nav>
69+
70+
<!-- Page Header -->
71+
<!-- Set your background image for this header on the line below. -->
72+
<header class="intro-header" style="background-image: url('img/about-bg.jpg')">
73+
<div class="container">
74+
<div class="row">
75+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
76+
<div class="page-heading">
77+
<h1>About Me</h1>
78+
<hr class="small">
79+
<span class="subheading">This is what I do.</span>
80+
</div>
81+
</div>
82+
</div>
83+
</div>
84+
</header>
85+
86+
<!-- Main Content -->
87+
<div class="container">
88+
<div class="row">
89+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
90+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Saepe nostrum ullam eveniet pariatur voluptates odit, fuga atque ea nobis sit soluta odio, adipisci quas excepturi maxime quae totam ducimus consectetur?</p>
91+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eius praesentium recusandae illo eaque architecto error, repellendus iusto reprehenderit, doloribus, minus sunt. Numquam at quae voluptatum in officia voluptas voluptatibus, minus!</p>
92+
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nostrum molestiae debitis nobis, quod sapiente qui voluptatum, placeat magni repudiandae accusantium fugit quas labore non rerum possimus, corrupti enim modi! Et.</p>
93+
</div>
94+
</div>
95+
</div>
96+
97+
<hr>
98+
99+
<!-- Footer -->
100+
<footer>
101+
<div class="container">
102+
<div class="row">
103+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
104+
<ul class="list-inline text-center">
105+
<li>
106+
<a href="#">
107+
<span class="fa-stack fa-lg">
108+
<i class="fa fa-circle fa-stack-2x"></i>
109+
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
110+
</span>
111+
</a>
112+
</li>
113+
<li>
114+
<a href="#">
115+
<span class="fa-stack fa-lg">
116+
<i class="fa fa-circle fa-stack-2x"></i>
117+
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
118+
</span>
119+
</a>
120+
</li>
121+
<li>
122+
<a href="#">
123+
<span class="fa-stack fa-lg">
124+
<i class="fa fa-circle fa-stack-2x"></i>
125+
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
126+
</span>
127+
</a>
128+
</li>
129+
</ul>
130+
<p class="copyright text-muted">Copyright &copy; Your Website 2016</p>
131+
</div>
132+
</div>
133+
</div>
134+
</footer>
135+
136+
<!-- jQuery -->
137+
<script src="vendor/jquery/jquery.min.js"></script>
138+
139+
<!-- Bootstrap Core JavaScript -->
140+
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
141+
142+
<!-- Contact Form JavaScript -->
143+
<script src="js/jqBootstrapValidation.js"></script>
144+
<script src="js/contact_me.js"></script>
145+
146+
<!-- Theme JavaScript -->
147+
<script src="js/clean-blog.min.js"></script>
148+
149+
</body>
150+
151+
</html>

‎public/contact.html‎

Lines changed: 189 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,189 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
6+
<meta charset="utf-8">
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<meta name="description" content="">
10+
<meta name="author" content="">
11+
12+
<title>Clean Blog - Contact</title>
13+
14+
<!-- Bootstrap Core CSS -->
15+
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
16+
17+
<!-- Theme CSS -->
18+
<link href="css/clean-blog.min.css" rel="stylesheet">
19+
20+
<!-- Custom Fonts -->
21+
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
22+
<link href='https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
23+
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' 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>
33+
34+
<body>
35+
36+
<!-- Navigation -->
37+
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
38+
<div class="container-fluid">
39+
<!-- Brand and toggle get grouped for better mobile display -->
40+
<div class="navbar-header page-scroll">
41+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
42+
<span class="sr-only">Toggle navigation</span>
43+
Menu <i class="fa fa-bars"></i>
44+
</button>
45+
<a class="navbar-brand" href="index.html">Start Bootstrap</a>
46+
</div>
47+
48+
<!-- Collect the nav links, forms, and other content for toggling -->
49+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
50+
<ul class="nav navbar-nav navbar-right">
51+
<li>
52+
<a href="index.html">Home</a>
53+
</li>
54+
<li>
55+
<a href="about.html">About</a>
56+
</li>
57+
<li>
58+
<a href="post.html">Sample Post</a>
59+
</li>
60+
<li>
61+
<a href="contact.html">Contact</a>
62+
</li>
63+
</ul>
64+
</div>
65+
<!-- /.navbar-collapse -->
66+
</div>
67+
<!-- /.container -->
68+
</nav>
69+
70+
<!-- Page Header -->
71+
<!-- Set your background image for this header on the line below. -->
72+
<header class="intro-header" style="background-image: url('img/contact-bg.jpg')">
73+
<div class="container">
74+
<div class="row">
75+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
76+
<div class="page-heading">
77+
<h1>Contact Me</h1>
78+
<hr class="small">
79+
<span class="subheading">Have questions? I have answers (maybe).</span>
80+
</div>
81+
</div>
82+
</div>
83+
</div>
84+
</header>
85+
86+
<!-- Main Content -->
87+
<div class="container">
88+
<div class="row">
89+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
90+
<p>Want to get in touch with me? Fill out the form below to send me a message and I will try to get back to you within 24 hours!</p>
91+
<!-- Contact Form - Enter your email address on line 19 of the mail/contact_me.php file to make this form work. -->
92+
<!-- WARNING: Some web hosts do not allow emails to be sent through forms to common mail hosts like Gmail or Yahoo. It's recommended that you use a private domain email address! -->
93+
<!-- NOTE: To use the contact form, your site must be on a live web host with PHP! The form will not work locally! -->
94+
<form name="sentMessage" id="contactForm" novalidate>
95+
<div class="row control-group">
96+
<div class="form-group col-xs-12 floating-label-form-group controls">
97+
<label>Name</label>
98+
<input type="text" class="form-control" placeholder="Name" id="name" required data-validation-required-message="Please enter your name.">
99+
<p class="help-block text-danger"></p>
100+
</div>
101+
</div>
102+
<div class="row control-group">
103+
<div class="form-group col-xs-12 floating-label-form-group controls">
104+
<label>Email Address</label>
105+
<input type="email" class="form-control" placeholder="Email Address" id="email" required data-validation-required-message="Please enter your email address.">
106+
<p class="help-block text-danger"></p>
107+
</div>
108+
</div>
109+
<div class="row control-group">
110+
<div class="form-group col-xs-12 floating-label-form-group controls">
111+
<label>Phone Number</label>
112+
<input type="tel" class="form-control" placeholder="Phone Number" id="phone" required data-validation-required-message="Please enter your phone number.">
113+
<p class="help-block text-danger"></p>
114+
</div>
115+
</div>
116+
<div class="row control-group">
117+
<div class="form-group col-xs-12 floating-label-form-group controls">
118+
<label>Message</label>
119+
<textarea rows="5" class="form-control" placeholder="Message" id="message" required data-validation-required-message="Please enter a message."></textarea>
120+
<p class="help-block text-danger"></p>
121+
</div>
122+
</div>
123+
<br>
124+
<div id="success"></div>
125+
<div class="row">
126+
<div class="form-group col-xs-12">
127+
<button type="submit" class="btn btn-default">Send</button>
128+
</div>
129+
</div>
130+
</form>
131+
</div>
132+
</div>
133+
</div>
134+
135+
<hr>
136+
137+
<!-- Footer -->
138+
<footer>
139+
<div class="container">
140+
<div class="row">
141+
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
142+
<ul class="list-inline text-center">
143+
<li>
144+
<a href="#">
145+
<span class="fa-stack fa-lg">
146+
<i class="fa fa-circle fa-stack-2x"></i>
147+
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
148+
</span>
149+
</a>
150+
</li>
151+
<li>
152+
<a href="#">
153+
<span class="fa-stack fa-lg">
154+
<i class="fa fa-circle fa-stack-2x"></i>
155+
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
156+
</span>
157+
</a>
158+
</li>
159+
<li>
160+
<a href="#">
161+
<span class="fa-stack fa-lg">
162+
<i class="fa fa-circle fa-stack-2x"></i>
163+
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
164+
</span>
165+
</a>
166+
</li>
167+
</ul>
168+
<p class="copyright text-muted">Copyright &copy; Your Website 2016</p>
169+
</div>
170+
</div>
171+
</div>
172+
</footer>
173+
174+
<!-- jQuery -->
175+
<script src="vendor/jquery/jquery.min.js"></script>
176+
177+
<!-- Bootstrap Core JavaScript -->
178+
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
179+
180+
<!-- Contact Form JavaScript -->
181+
<script src="js/jqBootstrapValidation.js"></script>
182+
<script src="js/contact_me.js"></script>
183+
184+
<!-- Theme JavaScript -->
185+
<script src="js/clean-blog.min.js"></script>
186+
187+
</body>
188+
189+
</html>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /