diff options
author | KushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com> | 2021-10-11 13:15:11 -0300 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:29 -0700 |
commit | 7835f24687abaa1e5254c5c78d985d4bb78abcfc (patch) | |
tree | a3e5f01a433284f4096b66fbe4bf4e6fe1523ff8 /static/nposts.html | |
parent | 29adc517ab528880fd249e85bb67a8a79ebfb815 (diff) |
couple of style changes + reply at footer is back
Diffstat (limited to 'static/nposts.html')
-rw-r--r-- | static/nposts.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/static/nposts.html b/static/nposts.html index 998152e..336edb6 100644 --- a/static/nposts.html +++ b/static/nposts.html @@ -15,27 +15,27 @@ {{ define "content" }} {{ $board := .Board }} <hr> -<div class="navlinks"> - [<a href="/{{ $board.Name }}/catalog">Catalog</a>] +<ul id="navlinks"> + <li>[<a href="/{{ $board.Name }}/catalog">Catalog</a>]</li> {{ if showArchive }} - [<a href="/{{ $board.Name }}/archive">Archive</a>] + <li>[<a href="/{{ $board.Name }}/archive">Archive</a>]</li> {{ end }} - [<a href="#bottom">Bottom</a>] - [<a href="javascript:location.reload()">Refresh</a>] -</div> + <li>[<a href="#bottom">Bottom</a>]</li> + <li>[<a href="javascript:location.reload()">Refresh</a>]</li> +</ul> {{ template "posts" . }} <hr> -<div class="navlinks"> - [<a href="/{{ $board.Name }}/catalog">Catalog</a>] +<ul id="navlinks"> + <li>[<a href="/{{ $board.Name }}/catalog">Catalog</a>]</li> {{ if showArchive }} - [<a href="/{{ $board.Name }}/archive">Archive</a>] + <li>[<a href="/{{ $board.Name }}/archive">Archive</a>]</li> {{ end }} - [<a href="#top" id="bottom">Top</a>] - [<a href="javascript:location.reload()">Refresh</a>] -</div> + <li>[<a href="#top" id="bottom">Top</a>]</li> + <li>[<a href="javascript:location.reload()">Refresh</a>]</li> +</ul> <hr> {{ if gt .TotalPage 0 }} |