-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (114 loc) · 4.48 KB
/
index.html
File metadata and controls
130 lines (114 loc) · 4.48 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Also Sprach Leif - Home</title>
<link rel="stylesheet" type="text/css" href="./css/default.css" />
</head>
<body>
<header>
<div id="logo">
<a href="./">Also Sprach Leif</a>
</div>
<nav>
<a href="./">Home</a>
<a href="./about.html">About</a>
<a href="./archive.html">Archive</a>
<a href="./atom.xml">Feed</a>
</nav>
<div id="tagline">
Math, Programming, Games, and whatever else I feel like
</div>
</header>
<div id="content">
<h1>Home</h1>
<!--
---
title: Also Sprach Leif
tagline: Math, Programming, Games, and whatever else I feel like
---
-->
<ul>
<li>
<a href="./posts/switching-from-jekyll-bootstrap-to-hakyll.html">Switching from Jekyll Bootstrap to Hakyll</a>
<br>
<small><em>Building a better blog</em></small>
</li>
<br>
<li>
<a href="./posts/lets-write-a-browser-engine-in-haskell-a-lens-interlude.html">Let's Write a Browser Engine in Haskell: a lens interlude</a>
<br>
<small><em>In which we sell our souls in exchange for the power to make Layout.hs suck less</em></small>
</li>
<br>
<li>
<a href="./posts/lets-build-a-browser-engine-in-haskell-part-6.html">Let's Build a Browser Engine in Haskell: part 6</a>
<br>
<small><em>In which we finally produce some output</em></small>
</li>
<br>
<li>
<a href="./posts/lets-build-a-browser-engine-in-haskell-part-5.html">Let's Build a Browser Engine in Haskell: part 5</a>
<br>
<small><em>In which everything is terrible forever</em></small>
</li>
<br>
<li>
<a href="./posts/lets-build-a-browser-engine-in-haskell-part-4.html">Let's Build a Browser Engine in Haskell: part 4</a>
<br>
<small><em>In which the DOM is styled</em></small>
</li>
<br>
<li>
<a href="./posts/lets-build-a-browser-engine-in-haskell-part-3.html">Let's Build a Browser Engine in Haskell: part 3</a>
<br>
<small><em>In which we parse CSS</em></small>
</li>
<br>
<li>
<a href="./posts/lets-build-a-browser-engine-in-haskell-setting-up-tests.html">Let's Build a Browser Engine in Haskell: setting up tests</a>
<br>
<small><em>In which we remember that tests are a thing we should have</em></small>
</li>
<br>
<li>
<a href="./posts/lets-build-a-browser-engine-in-haskell-part-2.html">Let's Build a Browser Engine in Haskell: Part 2</a>
<br>
<small><em>In which we parse HTML</em></small>
</li>
<br>
<li>
<a href="./posts/lets-build-a-browser-engine-in-haskell.html">Let's Build a Browser Engine in Haskell</a>
<br>
<small><em>In which we set up some types</em></small>
</li>
<br>
<li>
<a href="./posts/banner-sagafactions-multiplayer-rpgs-and-the-mechanics-of-speed.html">Banner Saga:Factions, multiplayer RPGs, and the mechanics of speed</a>
<br>
<small><em>Some musings on what the Banner Saga has to teach us about multiplayer RPGs</em></small>
</li>
<br>
<li>
<a href="./posts/initial-post.html">Initial Post</a>
<br>
<small><em>This is the reference implementation of the self referential joke</em></small>
</li>
<br>
</ul>
</div>
<footer>
<div style="float: left; text-align: left;">
©Leif Grele
<br>
github.com/hrothen
</div>
<div>
Site proudly generated by
<a href="http://jaspervdj.be/hakyll">Hakyll</a>
</div>
</footer>
</body>
</html>