-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (112 loc) · 3.78 KB
/
index.html
File metadata and controls
113 lines (112 loc) · 3.78 KB
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
50
51
52
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
78
79
80
81
82
83
84
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
113
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<link rel="shortcut icon" href="Images/Favicon/favicon.ico" />
<link rel="icon" sizes="16x16 32x32 64x64" href="Images/Favicon/favicon.ico" />
<link rel="icon" type="image/png" sizes="196x196" href="Images/Favicon/favicon-192.png" />
<link rel="icon" type="image/png" sizes="160x160" href="Images/Favicon/favicon-160.png" />
<link rel="icon" type="image/png" sizes="96x96" href="Images/Favicon/favicon-96.png" />
<link rel="icon" type="image/png" sizes="64x64" href="Images/Favicon/favicon-64.png" />
<link rel="icon" type="image/png" sizes="32x32" href="Images/Favicon/favicon-32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="Images/Favicon/favicon-16.png" />
<link rel="apple-touch-icon" href="Images/Favicon/favicon-57.png" />
<link rel="apple-touch-icon" sizes="114x114" href="Images/Favicon/favicon-114.png" />
<link rel="apple-touch-icon" sizes="72x72" href="Images/Favicon/favicon-72.png" />
<link rel="apple-touch-icon" sizes="144x144" href="Images/Favicon/favicon-144.png" />
<link rel="apple-touch-icon" sizes="60x60" href="Images/Favicon/favicon-60.png" />
<link rel="apple-touch-icon" sizes="120x120" href="Images/Favicon/favicon-120.png" />
<link rel="apple-touch-icon" sizes="76x76" href="Images/Favicon/favicon-76.png" />
<link rel="apple-touch-icon" sizes="152x152" href="Images/Favicon/favicon-152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="Images/Favicon/favicon-180.png" />
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="Images/Favicon/favicon-144.png" />
<meta name="msapplication-config" content="Images/Favicon/browserconfig.xml" />
<title>As yet untitled...</title>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<style type="text/css">
html
{
height: 100%;
}
body
{
height: calc(100% - 30px);
}
form
{
height: 100%;
overflow: auto;
}
footer.global-footer
{
position: fixed;
bottom: 0;
left: 0;
width: 100%;
border-top: 1px solid #ebebeb;
overflow: auto;
font-size: 0.6em;
color: #848484;
}
.line-height-30px {
line-height: 30px;
}
.padding-0 {
padding: 0;
}
.flex-row, .flex-row > [class*='col-']
{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex:1 0 auto;
}
.panel
{
display: flex;
flex-direction: column;
align-content: stretch;
width: 100%;
}
.panel-body
{
display: flex;
flex-grow: 1;
}
</style>
</head>
<body>
<form id="form1" class="form-horizontal">
<div class="jumbotron">
<div class="container">
<h1 class="text-center">As yet untitled...</h1>
<h2 class="text-center">
A blog about code<br />
<small>(and maybe a few other things occasionally...)</small>
</h2>
</div>
</div>
<div class="container">
<h1>Home</h1>
<hr/>
<p>Hi, this paragraph has a little bit about me and this blog.</p>
<small>(Well, it will be when I've written something...)</small>
<h2>Posts</h2>
<ul>
<li><a href="posts\Who-What-Where-Why.html">Who? What? Where? Why?</a> - 2016-03-24</li>
</ul>
</div>
<footer class="global-footer">
<div class="container">
<div class="row">
<div class="col-md-12 text-center line-height-30px padding-0">© Alex Wilks 2016</div>
</div>
</div>
</footer>
</form>
</body>
</html>