diff options
author | anomalous69 <81135357+anomalous69@users.noreply.github.com> | 2021-10-12 17:02:27 +1300 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:29 -0700 |
commit | 65e79e6a743f447f320595dafec530212a568b9d (patch) | |
tree | 2a48657731b3be3a64e6e5c7f50a59e83dd42aca /static/archive.html | |
parent | aa4ee29c36ebb876afafc9aaf4803cd052206585 (diff) |
Move square brackets out of <a>v0.0.16
Diffstat (limited to 'static/archive.html')
-rw-r--r-- | static/archive.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/static/archive.html b/static/archive.html index e5476ea..8420b97 100644 --- a/static/archive.html +++ b/static/archive.html @@ -50,20 +50,20 @@ {{ if mod $i 2 }} <tr class="box-alt"> {{ if eq $board.ModCred $board.Domain $board.Actor.Id }} - <td><a href="/poparchive?id={{ $e.Id }}&board={{ $board.Name }}">[Pop]</a></td> + <td>[<a href="/poparchive?id={{ $e.Id }}&board={{ $board.Name }}">Pop</a>]</td> {{ end }} <td>{{ short $board.Actor.Outbox $e.Id }}</td> <td style="overflow: hidden; word-wrap: break-word; text-overflow: ellipsis;">{{ shortExcerpt $e }}</td> - <td style="text-align: center;"><a href="/{{ $board.Actor.Name }}/{{ short $board.Actor.Outbox $e.Id }}">[View]</a></td> + <td style="text-align: center;">[<a href="/{{ $board.Actor.Name }}/{{ short $board.Actor.Outbox $e.Id }}">View</a>]</td> </tr> {{ else }} <tr class="box"> {{ if eq $board.ModCred $board.Domain $board.Actor.Id }} - <td><a href="/poparchive?id={{ $e.Id }}">[Pop]</a></td> + <td>[<a href="/poparchive?id={{ $e.Id }}">Pop</a>]</td> {{ end }} <td>{{ short $board.Actor.Outbox $e.Id }}</td> <td style="overflow: hidden; word-wrap: break-word; text-overflow: ellipsis;">{{ shortExcerpt $e }}</td> - <td style="text-align: center;"><a href="/{{ $board.Actor.Name }}/{{ short $board.Actor.Outbox $e.Id }}">[View]</a></td> + <td style="text-align: center;">[<a href="/{{ $board.Actor.Name }}/{{ short $board.Actor.Outbox $e.Id }}">View</a>]</td> </tr> {{ end }} {{ end }} |