-
Notifications
You must be signed in to change notification settings - Fork 6
/
cheat-sheet.html
64 lines (53 loc) · 1.47 KB
/
cheat-sheet.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
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="$lang$" xml:lang="$lang$">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
$for(author-meta)$
<meta name="author" content="$author-meta$" />
$endfor$
$if(date-meta)$
<meta name="dcterms.date" content="$date-meta$" />
$endif$
$if(keywords)$
<meta name="keywords" content="$for(keywords)$$keywords$$sep$, $endfor$" />
$endif$
<style type="text/css">
.cheat-sheet {
box-sizing: border-box;
-webkit-column-width: 36em;
-moz-column-width: 36em;
column-width: 36em;
-webkit-column-gap: 2em;
-moz-column-gap: 2em;
column-gap: 2em;
}
h1 {
background: linear-gradient(Coral, Bisque);
}
h2 {
background-color: Bisque;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
$if(highlighting-css)$
$highlighting-css$
$endif$
</style>
<title>$if(title-prefix)$$title-prefix$ – $endif$$pagetitle$</title>
</head>
<body>
<div class="container-fluid">
<div class="cheat-sheet">
$body$
</div>
</div>
</body>
</html>