diff options
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 }} |