-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathdefault.html
44 lines (39 loc) · 1.18 KB
/
default.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
<!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">
<meta name="robots" content="noindex">
<title>$title$ — Haskell Error Index</title>
<link rel="stylesheet" href="/css/highlight.css">
<script src="/js/highlight.min.js"></script>
<link rel="stylesheet" href="/css/default.css" />
<link rel="stylesheet" href="/css/theme.css" />
</head>
<body>
<main role="main">
<nav class="breadcrumb">
$for(parents)$
<a href="$url$">$title$</a> »
$endfor$
$title$
</nav>
<h1>$title$</h1>
$body$
</main>
<footer>
<p class="HF foot">
This site is a project of <a href="https://haskell.foundation" target="_blank" rel="noopener noreferrer">The
Haskell Foundation</a>.
</p>
<p class="shoutout foot">
Site proudly generated by
<a href="http://jaspervdj.be/hakyll" target="_blank" rel="noopener noreferrer">Hakyll</a>
</p>
</footer>
<script>document.querySelectorAll('code.language-haskell').forEach(el => {
hljs.highlightElement(el);
});</script>
</body>
</html>