-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.j2
190 lines (163 loc) · 3.24 KB
/
index.html.j2
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html>
<head>
<style>
/*!
* Milligram v1.4.1
* https://milligram.io
*
* Copyright (c) 2020 CJ Patoilo
* Licensed under the MIT license
*/
*,
*:after,
*:before {
box-sizing: inherit;
}
html {
box-sizing: border-box;
font-size: 62.5%;
}
body {
color: #606c76;
font-family: 'Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
font-size: 1.6em;
font-weight: 300;
letter-spacing: .01em;
line-height: 1.6;
}
code {
background: #f4f5f6;
border-radius: .4rem;
font-size: 86%;
margin: 0 .2rem;
padding: .2rem .5rem;
white-space: nowrap;
}
pre {
background: #f4f5f6;
border-left: 0.3rem solid #9b4dca;
overflow-y: hidden;
}
pre>code {
border-radius: 0;
display: block;
padding: 1rem 1.5rem;
white-space: pre;
}
.container {
margin: 0 auto;
max-width: 112.0rem;
padding: 0 2.0rem;
position: relative;
width: 100%;
}
a {
color: #9b4dca;
text-decoration: none;
}
a:focus,
a:hover {
color: #606c76;
}
ul {
list-style: none;
margin-top: 0;
padding-left: 0;
}
ul ul {
font-size: 90%;
margin: 1.5rem 0 1.5rem 3.0rem;
}
ul {
list-style: circle inside;
}
li {
margin-bottom: 1.0rem;
}
p,
pre,
ul {
margin-bottom: 2.5rem;
}
p {
margin-top: 0;
}
h1,
h2,
h3,
h5 {
font-weight: 300;
letter-spacing: -.1rem;
margin-bottom: 2.0rem;
margin-top: 0;
}
h1 {
font-size: 4.6rem;
line-height: 1.2;
}
h2 {
font-size: 3.6rem;
line-height: 1.25;
}
h3 {
font-size: 2.8rem;
line-height: 1.3;
}
h5 {
font-size: 1.8rem;
letter-spacing: -.05rem;
line-height: 1.5;
}
</style>
<title>{{conf.name}}</title>
</head>
<body>
<main>
<header>
<section class="container">
<h1>Hi. I am {{ conf.name }}</h1>
<h5>Last Updated on: {{date}}</h5>
<h5>BTC Blockhash on time of Update:
<a href="{{ btchash.url }}"><code>{{btchash.hash}}</code> (height {{btchash.height}})</a>
</h5>
<h5>See all versions of this file on <a href="https://web.archive.org/*/{{conf.url}}">Internet Archive</a> or <a href="{{conf.gh_url}}">GitHub</a></h5>
<h5>This page does no external requests. See the Network Tab in your browser.</h5>
<h5>This page is signed using my GPG Key. See the source. Try curl to verify: <code>curl {{conf.url}} | gpg --verify</code></h5>
</section>
</header>
<section id="platforms" class="container">
<div class="container">
<h2>Platforms I am on:</h2>
{% for platform in conf.platforms %}
<div class="container">
<h3>{{platform.title}}</h3>
<ul class="container">
{% for id in platform.ids %}
<li>
{%if id.link %}
<a href="{{id.link}}"><code>{{id.id}}</code></a> {{id.comment}}
{% else %} <code>{{id.id}}</code> {{id.comment}} {% endif %}
</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
</section>
<section id="misc" class="container">
<div class="container">
<h2>Misc:</h2>
{% for stuff in misc %}
<div class="container">
<h3>{{ stuff.title }}</h3>
<div class="container">
{{stuff.content}}
</div>
</div>
{% endfor %}
</div>
</section>
</main>
</body>
</html>