-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst-blog-post.html
49 lines (35 loc) · 1.5 KB
/
first-blog-post.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>jeffstarker.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1" />
<link rel="stylesheet" href="/theme/css/bootstrap.min.css" />
<link rel="stylesheet" href="/theme/css/site.css" />
</head>
<body>
<div class="container">
<header class="col-sm-12 text-center">
<h4>Jeff Starker</h4>
<img src="/theme/images/profile.jpg" class="img-circle"/>
<h4><small>Code Smith</small></h4>
<p></p>
</header>
<nav class="col-sm-12 text-center">
<ui class="list-inline">
<li><a href="/">Home</a></li>
</ui>
</nav>
<main class="col-sm-12 center-block">
<article class="col-sm-8 col-md-offset-2">
<h1>First Blog Post</h1>
<small class="text-muted">17 January 2016</small>
<p>Rewrote the blog using pelican. This makes it a bit easier to use since now I don't have to deal with Jekyll and ruby any more. We'll see how this works out since I didn't really do anything with this blog last time. I do have some scheduled articles that I want to post eventually.</p>
</article>
</main>
<footer class="col-sm-12 text-center">
© Jeffrey Starker
</footer>
</div>
</body>
</html>