-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdark.html
93 lines (93 loc) · 3.59 KB
/
dark.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
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
<html>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<style>
body {
max-width: 50em;
margin: 0 auto;
color: white;
background: black;
margin-top: 3em;
}
pre {
white-space: pre-wrap;
line-height: 125%;
background-color: #111;
padding: 1em;
}
@media only screen and (max-width:768px) {
body {
max-width:100%;
}
}
a:link {
color: #0a0 ;
}
a:visited {
color: #004100 ;
}
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.codehilite .hll { background-color: #0000ff }
.codehilite { background: #000000; }
.codehilite .c { color: #00ff00 } /* Comment */
.codehilite .k { color: #ff0000 } /* Keyword */
.codehilite .ch { color: #00ff00 } /* Comment.Hashbang */
.codehilite .cm { color: #00ff00 } /* Comment.Multiline */
.codehilite .cp { color: #e5e5e5 } /* Comment.Preproc */
.codehilite .cpf { color: #00ff00 } /* Comment.PreprocFile */
.codehilite .c1 { color: #00ff00 } /* Comment.Single */
.codehilite .cs { color: #00ff00 } /* Comment.Special */
.codehilite .kc { color: #ff0000 } /* Keyword.Constant */
.codehilite .kd { color: #ff0000 } /* Keyword.Declaration */
.codehilite .kn { color: #ff0000 } /* Keyword.Namespace */
.codehilite .kp { color: #ff0000 } /* Keyword.Pseudo */
.codehilite .kr { color: #ff0000 } /* Keyword.Reserved */
.codehilite .kt { color: #ee82ee } /* Keyword.Type */
.codehilite .s { color: #87ceeb } /* Literal.String */
.codehilite .no { color: #7fffd4 } /* Name.Constant */
.codehilite .nf { color: #ffff00 } /* Name.Function */
.codehilite .nv { color: #eedd82 } /* Name.Variable */
.codehilite .sa { color: #87ceeb } /* Literal.String.Affix */
.codehilite .sb { color: #87ceeb } /* Literal.String.Backtick */
.codehilite .sc { color: #87ceeb } /* Literal.String.Char */
.codehilite .dl { color: #87ceeb } /* Literal.String.Delimiter */
.codehilite .sd { color: #87ceeb } /* Literal.String.Doc */
.codehilite .s2 { color: #87ceeb } /* Literal.String.Double */
.codehilite .se { color: #87ceeb } /* Literal.String.Escape */
.codehilite .sh { color: #87ceeb } /* Literal.String.Heredoc */
.codehilite .si { color: #87ceeb } /* Literal.String.Interpol */
.codehilite .sx { color: #87ceeb } /* Literal.String.Other */
.codehilite .sr { color: #87ceeb } /* Literal.String.Regex */
.codehilite .s1 { color: #87ceeb } /* Literal.String.Single */
.codehilite .ss { color: #87ceeb } /* Literal.String.Symbol */
.codehilite .fm { color: #ffff00 } /* Name.Function.Magic */
.codehilite .vc { color: #eedd82 } /* Name.Variable.Class */
.codehilite .vg { color: #eedd82 } /* Name.Variable.Global */
.codehilite .vi { color: #eedd82 } /* Name.Variable.Instance */
.codehilite .vm { color: #eedd82 } /* Name.Variable.Magic */
</style>
<title>$blog_title</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<body>
<h1>$blog_title</h1>
<hr>
<div>
<table style="width:100%">
<col width="40%">
<col width="50%">
<col width="10%">
<tr>
<th align="left">Filename</th>
<th align="left">Title</th>
<th align="left">Date</th>
<tr>
$posts_table
</table>
</div>
<hr>
$footnote
</body
</html>