-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (53 loc) · 2.42 KB
/
index.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
<!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>Nicolas Porcel's Blog - Home</title>
<link rel="stylesheet" href="./css/default.css" />
<link rel="stylesheet" href="./css/syntax.css" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
</head>
<body>
<div id="header">
<div id="logo">
<a href="./">Nicolas Porcel's Blog</a>
</div>
<div id="navigation">
<a href="./">Home</a>
<a href="./about.html">About</a>
<a href="./archive.html">Archive</a>
</div>
</div>
<div id="content">
<h1>Home</h1>
<p>Welcome to my blog!</p>
<p>This is mainly a blog about programming and Linux, but I may add some
unrelated articles. Stay tuned!</p>
<h2>Recent posts:</h2>
<ul>
<li>
<a href="./posts/2017-05-11-how-to-install-alpine-on-ovh.html">How to install Alpine Linux on OVH</a> - May 11, 2017
</li>
<li>
<a href="./posts/2016-12-22-extract-script-from-git-repository.html">How to extract a script and its history from a git repository</a> - December 22, 2016
</li>
<li>
<a href="./posts/2016-12-10-setting-up-the-nas.html">How to setup a NAS using Btrfs</a> - December 10, 2016
</li>
<li>
<a href="./posts/2016-12-03-choosing-the-OS.html">Which OS to run a NAS</a> - December 3, 2016
</li>
<li>
<a href="./posts/2016-11-12-building-a-cheap-nas.html">How to build a NAS for 300€</a> - November 12, 2016
</li>
</ul>
<p>Find more in the <a href="./archive.html">archives</a>.</p>
</div>
<div id="footer">
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This blog is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.<br />
Site proudly generated by <a href="http://jaspervdj.be/hakyll">Hakyll</a>.
</div>
</body>
</html>