blob: 8482a6f838ad8b378a460ed3076a452d62c55b84 (
plain) (
blame)
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
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ .Title }}{{ if ne .Protocol "startpage" }} - {{ .Protocol | title }} proxy{{ end }}</title>
<link rel="stylesheet" href="{{ .Assets.Style }}" />
<style>
@font-face {
font-family: 'Iosevka Term SS03';
font-style: normal;
font-weight: normal;
src: url('{{ .Assets.FontW2 }}') format('woff2'),
url('{{ .Assets.FontW }}') format('woff');
}
@font-face {
font-family: 'Iosevka Aile';
font-style: normal;
font-weight: normal;
src: url('{{ .Assets.PropFontW2 }}') format('woff2'),
url('{{ .Assets.PropFontW }}') format('woff');
}
</style>
</head>
<body class="{{ if not .Lines }}is-plain{{ end }}">
<header class="header header-base">
<div class="location">
<a class="location__prefix">{{ .Protocol }}://</a><a class="location__prefix location__prefix--mobile">://</a>
{{- if .URI -}}
{{- $page := . -}}
{{- $href := printf "/%s" .Protocol -}}
{{- $uriParts := split .URI "/" -}}
{{- $uriLast := $uriParts | last -}}
{{- $uriParts = $uriParts | pop -}}
{{- if eq $uriLast "" -}}
{{- $uriLast = $uriParts | last -}}
{{- $uriParts = $uriParts | pop -}}
{{- end -}}
{{- range $i, $part := $uriParts -}}
{{- if and (eq $page.Protocol "gopher") (eq $i 1) -}}
{{- $href = printf "%s/1" $href -}}
{{- $part = $part | trimLeftChar -}}
{{- if not (eq $part "") -}}
{{- $href = printf "%s/%s" $href $part -}}
<span class="location__slash">/</span><a href="{{ $href }}/" class="location__uripart">{{ $part }}</a>
{{- end -}}
{{- else -}}
{{- $href = printf "%s/%s" $href . -}}
{{- if ne $i 0 -}}
<span class="location__slash">/</span>
{{- end -}}
<a href="{{ $href }}/" class="location__uripart">{{ . }}</a>
{{- end -}}
{{- end -}}
{{- if ne (len $uriParts) 0 -}}
<span class="location__slash">/</span>
{{- end -}}
{{- if and (eq $page.Protocol "gopher") (eq (len $uriParts) 1) -}}
{{- $uriLast = $uriLast | trimLeftChar -}}
{{- end -}}
<span class="location__uripart">{{ $uriLast }}</span>
{{- end -}}
</div>
<div class="actions">
{{- if and (not .Lines) (not .Error) (eq .Protocol "gopher") -}}
<div class="action"><a href="/gopher/{{ .URI | replace "^([^/]*)/0" "$1/9" }}">View raw</a></div>
{{- end -}}
<div class="action"><button class="settings-btn">Settings</button></div>
</div>
</header>
<main class="wrap">
<pre class="content content--has-monospace-font{{ if .Lines }} content--has-type-annotations{{ end }}">
{{- if .Lines -}}
{{- $content := "" -}}
{{- range .Lines -}}
{{- if ne $content "" -}}
{{- $content = printf "%s\n" $content -}}
{{- end -}}
{{- if .Link -}}
{{- $content = printf "%s%s" $content (printf "<span class=\"type-annotation\">%s </span><a class=\"link link--%s\" href=\"%s\">%s</a>" .Type .Type .Link (.Text | HTMLEscape)) -}}
{{- else -}}
{{- $content = printf "%s%s" $content (printf "<span class=\"type-annotation\"> </span>%s" (.Text | HTMLEscape)) -}}
{{- end -}}
{{- end -}}
{{- $content | safeHtml -}}
{{- else -}}
{{- .RawText -}}
{{- end -}}
</pre>
</main>
<aside class="modal modal--settings">
<div class="modal__content">
<header class="modal__head header-base">
<h1 class="modal__title">Settings</h1>
<button class="modal__close-btn">Close</button>
</header>
<div class="setting setting--word-wrap">
<strong class="setting__label">Wrap wide content</strong>
<button class="setting__value">[N/A]</button>
</div>
<div class="setting setting--monospace-font">
<strong class="setting__label">Monospace font</strong>
<button class="setting__value">[N/A]</button>
</div>
<div class="setting setting--image-previews">
<strong class="setting__label">Image thumbnails</strong>
<button class="setting__value">[N/A]</button>
</div>
<div class="setting setting--clickable-plain-links">
<strong class="setting__label">Clickable links in text files</strong>
<button class="setting__value">[N/A]</button>
</div>
</div>
</aside>
<script src="{{ .Assets.JS }}"></script>
</body>
</html>
|