-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
43 lines (33 loc) · 921 Bytes
/
Copy pathtemplate.html
File metadata and controls
43 lines (33 loc) · 921 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="noindex, nofollow">
<title>{{ printf "%s" .title }}</title>
</head>
<body>
<h1>{{ printf "%s" .title }}</h1>
<div>
{{ $para := .para }}
{{ range (len .para) }}
{{ printf "%s" (index $para .) }}
<br><br>
{{ end }}
</div>
<div>
<h2>More food for thought:</h2>
<ul>
{{ $ref := .ref }}
{{ $refl := .refl }}
{{ range (len .ref) }}
<li><a href="./{{ printf "%s" (index $refl .) }}/">{{ printf "%s" (index $ref .) }}...</a></li>
{{ end }}
</ul>
</div>
<div>
<h2>And always hold in your mind:</h2>
{{ printf "%s" .poison }}
</div>
<h3>Garbage for the garbage king!</h3>
</body>
</html>