diff options
author | FChannel <> | 2021-07-31 16:35:42 -0700 |
---|---|---|
committer | FChannel <> | 2021-07-31 16:35:42 -0700 |
commit | c2184d6add23d9b0ca44dbbc5d026ab4f482dceb (patch) | |
tree | ca2f8ef2557458eb045e3eafcccb5d7de823f41d /static/ncatalog.html | |
parent | 4a9452985a127a53572358c3b86a425a5df616e1 (diff) |
added pop route for removing archived posts. removed seeing archive page when not archived posts.
Diffstat (limited to 'static/ncatalog.html')
-rw-r--r-- | static/ncatalog.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/static/ncatalog.html b/static/ncatalog.html index 65a7d84..c51a5a3 100644 --- a/static/ncatalog.html +++ b/static/ncatalog.html @@ -19,7 +19,9 @@ <hr> <ul style="margin: 0; padding: 0; display: inline"> <li style="display: inline"><a href="/{{ $board.Name }}">[Return]</a></li> + {{ if showArchive }} <li style="display: inline"><a href="/{{ $board.Name }}/archive">[Archive]</a></li> + {{ end }} <li style="display: inline"><a href="#bottom">[Bottom]</a></li> <li style="display: inline"><a href="javascript:location.reload()">[Refresh]</a></li> </ul> @@ -86,7 +88,9 @@ <hr> <ul style="margin: 0; padding: 0; display: inline"> <li style="display: inline"><a href="/{{ $board.Name }}">[Return]</a></li> + {{ if showArchive }} <li style="display: inline"><a href="/{{ $board.Name }}/archive">[Archive]</a></li> + {{ end }} <li style="display: inline"><a id="bottom" href="#top">[Top]</a></li> <li style="display: inline"><a href="javascript:location.reload()">[Refresh]</a></li> </ul> |