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
|
<!DOCTYPE html>
<html>
<head>
<title>{{ .Title }}</title>
</head>
<style>
a, a:link, a:visited, a:hover, a:active {
text-decoration: none
}
a:link, a:visited, a:active {
color: black;
}
a:hover {
color: #de0808;
}
</style>
<script>
function getMIMEType(type)
{
re = /\/.+/g
return type.replace(re, "")
}
function shortURL(url)
{
var check = url.replace("{{.Board.Actor}}/", "")
re = /.+\//g;
temp = re.exec(url)
if(temp[0] == "{{ .Board.Actor }}/")
{
var short = url.replace("https://", "");
short = short.replace("http://", "");
short = short.replace("www.", "");
var re = /^.{3}/g;
var u = re.exec(short);
re = /\w+$/g;
u = re.exec(short);
return u;
}else{
var short = url.replace("https://", "");
short = short.replace("http://", "");
short = short.replace("www.", "");
var re = /^.{3}/g;
var u = re.exec(short);
re = /\w+$/g;
u = re.exec(short);
replace = short.replace(/\/+/g, " ")
replace = replace.replace(u, " ").trim()
re = /\w+$/;
v = re.exec(replace)
v = "f" + v[0] + "-" + u
return v;
}
}
</script>
<body style="background-color: #eef2fe;">
<ul id="top" style="padding:0; display: inline;">
{{range .Boards}}
<li style="display: inline;"><a href="{{.Location}}">{{.Name }}</a></li>
{{end}}
</ul>
{{ $board := .Board }}
{{ if $board.IsMod }}
<span style="float: right;"><a href="/{{ .Key }}/{{ .Board.Name }}">[Manage Board]</a></span>
{{ end }}
<div style="margin: 0 auto; width: 400px; margin-bottom: 100px;">
<h1 style="color: #af0a0f;">/{{ $board.Name }}/ - {{ $board.PrefName }}</h1>
<form id="new-post" action="/post" method="post" enctype="multipart/form-data">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" placeholder="Anonymous"><br>
<label for="options">Options:</label><br>
<input type="text" id="options" name="options"><br>
<label for="subject">Subject:</label><br>
<input type="text" id="subject" name="subject"><input type="submit" value="Post"><br>
<label for="comment">Comment:</label><br>
<textarea rows="10" cols="50" id="comment" name="comment"></textarea><br>
<input type="hidden" id="inReplyTo" name="inReplyTo" value="{{ $board.InReplyTo }}">
<input type="hidden" id="sendTo" name="sendTo" value="{{ $board.To }}">
<input type="hidden" id="boardName" name="boardName" value="{{ $board.Name }}">
<input type="hidden" id="captchaCode" name="captchaCode" value="{{ $board.CaptchaCode }}">
<input type="file" id="file" name="file"><br><br>
<label stye="display: inline-block;" for="captcha">Captcha:</label><br>
<input style="display: inline-block;" type="text" id="captcha" name="captcha"><br>
<div style="height: 65px;">
<img src="{{ $board.Captcha }}">
</div>
</form>
</div>
<hr>
<ul style="margin: 0; padding: 0; display: inline">
<li style="display: inline"><a href="/{{ $board.Name }}">[Return]</a></li>
<li style="display: inline"><a href="#bottom">[Bottom]</a></li>
<li style="display: inline"><a href="javascript:location.reload()">[Refresh]</a></li>
</ul>
<hr>
<div style="padding: 10px; text-align: center;">
{{ range .Posts }}
<div style="overflow: hidden; vertical-align: top; margin: 0 auto; display: inline-block; width: 180px; max-height: 320px; margin-bottom: 10px;">
{{ if $board.IsMod }}
<a href="/delete?id={{ .Id }}">[Delete Post]</a>
{{ end }}
{{ if .Attachment }}
{{ if $board.IsMod }}
<a href="/deleteattach?id={{ .Id }}">[Delete Attachment]</a>
{{ end }}
<a id="{{ .Id }}-anchor" href="/{{ $board.Name }}/">
<div id="media-{{ .Id }}"></div>
<script>
media = document.getElementById("media-{{ .Id }}")
if(getMIMEType({{ (index .Attachment 0).MediaType }}) == "image"){
var img = document.createElement("img");
img.style = "float: left; margin-right: 10px; margin-bottom: 10px; max-width: 150px; max-height: 150px; cursor: move;"
img.setAttribute("id", "img")
img.setAttribute("main", "1")
img.setAttribute("src", "{{ (index .Attachment 0).Href }}")
media.appendChild(img)
}
if(getMIMEType({{ (index .Attachment 0).MediaType }}) == "audio"){
var audio = document.createElement("audio")
audio.controls = 'controls'
audio.muted = 'muted'
audio.src = '{{ (index .Attachment 0).Href }}'
audio.type = '{{ (index .Attachment 0).MediaType }}'
audio.style = "float: left; margin-right: 10px; margin-bottom: 10px; width: 150px;"
audio.innerText = 'Audio is not supported.'
media.appendChild(audio)
}
if(getMIMEType({{ (index .Attachment 0).MediaType }}) == "video"){
var video = document.createElement("video")
video.controls = 'controls'
video.muted = 'muted'
video.src = '{{ (index .Attachment 0).Href }}'
video.type = '{{ (index .Attachment 0).MediaType }}'
video.style = "float: left; margin-right: 10px; margin-bottom: 10px; width: 150px;"
video.innerText = 'Video is not supported.'
media.appendChild(video)
}
</script>
{{ end }}
<div>
{{ $replies := .Replies }}
<span style="display: block">R: {{ $replies.TotalItems }}{{ if $replies.TotalImgs }}/ A: {{ $replies.TotalImgs }}{{ end }}</span>
{{ if .Name }}
<span style="display: block; color: #0f0c5d;"><b>{{ .Name }}</b></span>
{{ end }}
{{ if .Content }}
<span style="display: block">{{.Content}}</span>
{{ end }}
</div>
</a>
</div>
<script>
document.getElementById("{{ .Id }}-anchor").href = "/{{ $board.Name }}/" + shortURL("{{ .Id }}")
</script>
{{ end }}
</div>
<hr>
<ul style="margin: 0; padding: 0; display: inline">
<li style="display: inline"><a href="/{{ $board.Name }}">[Return]</a></li>
<li style="display: inline"><a id="bottom" href="#top">[Top]</a></li>
<li style="display: inline"><a href="javascript:location.reload()">[Refresh]</a></li>
</ul>
<hr>
</body>
</html>
|