diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/archive.html | 4 | ||||
-rw-r--r-- | views/report.html | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/views/archive.html b/views/archive.html index a5184a4..4df3a57 100644 --- a/views/archive.html +++ b/views/archive.html @@ -27,7 +27,7 @@ <td>[<a href="/poparchive?id={{ $e.Id }}&board={{ $board.Name }}">Pop</a>]</td> {{ end }} <td>{{ shortURL $board.Actor.Outbox $e.Id }}</td> - <td style="overflow: hidden; word-wrap: break-word; text-overflow: ellipsis;">{{ shortExcerpt $e }}</td> + <td style="overflow: hidden; word-wrap: break-word; text-overflow: ellipsis; padding-left: 5px;">{{ shortExcerpt $e }}</td> <td style="text-align: center;">[<a href="/{{ $board.Actor.Name }}/{{ shortURL $board.Actor.Outbox $e.Id }}">View</a>]</td> </tr> {{ else }} @@ -36,7 +36,7 @@ <td>[<a href="/poparchive?id={{ $e.Id }}">Pop</a>]</td> {{ end }} <td>{{ shortURL $board.Actor.Outbox $e.Id }}</td> - <td style="overflow: hidden; word-wrap: break-word; text-overflow: ellipsis;">{{ shortExcerpt $e }}</td> + <td style="overflow: hidden; word-wrap: break-word; text-overflow: ellipsis; padding-left: 5px;">{{ shortExcerpt $e }}</td> <td style="text-align: center;">[<a href="/{{ $board.Actor.Name }}/{{ shortURL $board.Actor.Outbox $e.Id }}">View</a>]</td> </tr> {{ end }} diff --git a/views/report.html b/views/report.html index d691349..17f29cf 100644 --- a/views/report.html +++ b/views/report.html @@ -1,4 +1,7 @@ -{{ template "partials/top" .page }} +<div style="max-width: 800px; margin: 0 auto;"> + <h1 style="text-align: center;">/{{ .page.Board.Name }}/ - {{ .page.Board.PrefName }}</h1> + <p style="text-align: center;">{{ .page.Board.Summary }}</p> +</div> <div style="height: 500px; width: 420px; margin: 0 auto; margin-top:75px;"> <a href="{{ .page.Board.Actor.Id }}/{{ shortURL .page.Board.Actor.Outbox .page.Board.InReplyTo }}">[Back]</a> |