-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (64 loc) · 2.4 KB
/
index.html
File metadata and controls
81 lines (64 loc) · 2.4 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
<!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>hhefesto's blog - Home</title>
<link rel="stylesheet" href="./css/default.css" />
<link rel="stylesheet" href="./css/syntax.css" />
</head>
<body>
<header>
<div class="logo">
<a href="./">hhefesto's blog</a>
</div>
<nav>
<a href="./">Home</a>
<a href="./about.html">About</a>
<a href="./contact.html">Contact</a>
<a href="./archive.html">Archive</a>
</nav>
</header>
<main role="main">
<h1>Home</h1>
<h2>Welcome</h2>
<p>Welcome to my blog!</p>
<p>Please feel free to make a pull request in github if you find anything worth changing/adding:</p>
<ul>
<li><a href="https://github.com/hhefesto/hhefesto.github.io">Code for this blog</a></li>
</ul>
<h2>Blog's principles</h2>
<ol>
<li>To publish with errors is better than not publishing at all</li>
<li>Attempt to reduce errors</li>
<li>Don't hide your errors: iterations on a blog are encoraged (i.e. versioning on blog posts)</li>
<li>Grow the community</li>
<li>Try to not take it too seriously (i.e. chill)</li>
</ol>
<h2>Latest Posts</h2>
<ul>
<li>
<a href="./posts/2023-07-27-uno-monoids.html">The Uno Monoids (INCOMPLETE)</a> - July 27, 2023
</li>
<li>
<a href="./posts/2021-06-04-telomare-ci-guide-v0-1.html">Telomare's CI Guide V0.1</a> - June 4, 2021
</li>
<li>
<a href="./posts/2020-02-16-megaparsec.html">My experience refactoring from Parsec to Megaparsec for the SIL parser thus far</a> - February 16, 2020
</li>
<li>
<a href="./posts/2020-01-25-react-setup.html">Vanilla React on NixOS setup</a> - January 25, 2020
</li>
<li>
<a href="./posts/2020-01-22-hello-world.html">Hakyll + Stack + Nix</a> - January 22, 2020
</li>
</ul>
<p>…or you can find more in the <a href="./archive.html">archives</a>.</p>
</main>
<footer>
Site proudly generated by
<a href="http://jaspervdj.be/hakyll">Hakyll</a>
</footer>
</body>
</html>