aboutsummaryrefslogtreecommitdiff
path: root/static/nadmin.html
diff options
context:
space:
mode:
authoranomalous69 <81135357+anomalous69@users.noreply.github.com>2021-10-12 17:02:27 +1300
committerFChannel <>2022-06-19 12:53:29 -0700
commit65e79e6a743f447f320595dafec530212a568b9d (patch)
tree2a48657731b3be3a64e6e5c7f50a59e83dd42aca /static/nadmin.html
parentaa4ee29c36ebb876afafc9aaf4803cd052206585 (diff)
Move square brackets out of <a>v0.0.16
Diffstat (limited to 'static/nadmin.html')
-rw-r--r--static/nadmin.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/static/nadmin.html b/static/nadmin.html
index e8fbc36..8ee4800 100644
--- a/static/nadmin.html
+++ b/static/nadmin.html
@@ -18,8 +18,8 @@
</select>
</form>
<ul style="display: inline-block; padding: 0;">
- <li style="display: inline-block;"><a href="#news">[Create News]</a></li>
- <li style="display: inline-block;"><a href="#regex">[Post Blacklist]</a></li>
+ <li style="display: inline-block;">[<a href="#news">Create News</a>]</li>
+ <li style="display: inline-block;">[<a href="#regex">Post Blacklist</a>]</li>
<!-- <li style="display: inline-block;"><a href="javascript:show('followers')">Followers</a></li> -->
<!-- <li style="display: inline-block;"><a href="#reported">Reported</a></li> -->
</ul>
@@ -36,7 +36,7 @@
{{ $actor := .Actor }}
{{ $key := .Key }}
{{ range .Following }}
- <li><a href="/{{ $key }}/follow?follow={{ . }}&actor={{ $actor }}">[Unfollow]</a><a href="{{ . }}">{{ . }}</a></li>
+ <li>[<a href="/{{ $key }}/follow?follow={{ . }}&actor={{ $actor }}">Unfollow</a>]<a href="{{ . }}">{{ . }}</a></li>
{{ end }}
</ul>
</div>
@@ -71,7 +71,7 @@
{{ if .PostBlacklist }}
<ul style="display: inline-block; padding: 0; margin: 0; margin-top: 25px; list-style-type: none;">
{{ range .PostBlacklist }}
- <li>{{ .Regex }} <a href="/blacklist?remove={{ .Id }}">[remove]</a></li>
+ <li>{{ .Regex }} [<a href="/blacklist?remove={{ .Id }}">remove</a>]</li>
{{ end }}
</ul>
{{ end }}