-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
71 lines (68 loc) · 3.5 KB
/
about.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OB's Blog - About</title>
<link rel="icon" type="image/png" href="./favicon.ico">
<link rel="stylesheet" href="./css/syntax.css" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/grids-responsive-min.css">
<link rel="stylesheet" href="./css/blog.css">
</head>
<body>
<div id="layout" class="pure-g">
<div class="sidebar pure-u-1 pure-u-md-1-4">
<div class="header">
<h1 class="brand-title">Thus Spake Obelisk</h1>
<!--<h2 class="brand-tagline">Thus Spake Obelisk</h2> -->
<nav class="nav">
<ul class="nav-list">
<li class="nav-item">
<a href="./">Home</a>
</li>
</ul>
<ul class="nav-list">
<li class="nav-item">
<a href="./about.html">About</a>
</li>
</ul>
<ul class="nav-list">
<li class="nav-item">
<a href="./archive.html">Archive</a>
</li>
</ul>
<ul class="nav-list">
<li class="nav-item">
<a href="./rss.xml"><img src="./rss.svg" height="16" width="16/"></a>
</li>
</ul>
</nav>
</div>
</div>
<div class="content pure-u-1 pure-u-md-3-4">
<div>
<!-- A wrapper for all the blog posts -->
<div class="posts">
<article>
<section class="post">
<header class="post-title">
About
</header>
<p>A blog written by a Haskell amateur.</p>
</section>
</article>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="pure-menu pure-menu-horizontal">
<ul>
Site proudly generated by <a href="http://jaspervdj.be/hakyll">Hakyll</a> and <a href="http://purecss.io/">Pure CSS</a>
</ul>
</div>
</div>
</body>
</html>