diff options
author | FChannel <> | 2021-07-22 13:50:11 -0700 |
---|---|---|
committer | FChannel <> | 2021-07-22 13:50:11 -0700 |
commit | 3b2c8a4c78ade9e819b61aa055039ae00e517a3e (patch) | |
tree | 1d52c2c44cf89d6aa53b7ff2fd1e034553e2157a /static/main.html | |
parent | 5592a8c898b45e1e97d91b2c0bb0ed21750a9959 (diff) |
fixed quote bug and moved comment parsing server side without javascript
Diffstat (limited to 'static/main.html')
-rw-r--r-- | static/main.html | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/static/main.html b/static/main.html index 3cb8555..9209ed9 100644 --- a/static/main.html +++ b/static/main.html @@ -53,14 +53,6 @@ color: #789922; } - .reply { - {{ if .Board.Restricted }} - color:#af0a0f; - {{ else }} - color:#000080; - {{ end }} - } - .post { {{ if .Board.Restricted }} background-color: #d5daf0; @@ -85,6 +77,7 @@ <body> <ul style="display: inline; padding:0;"> {{ $l := len .Boards }} + <li style="display: inline;">[<a href="/">Home</a>]</li> {{range $i, $e := .Boards}} {{ if eq (sub $l 1) 0 }} <li style="display: inline;">[ <a href="{{.Location}}">{{$e.Name}} </a>]</li> |