diff options
author | FChannel <> | 2021-07-03 18:39:34 -0700 |
---|---|---|
committer | FChannel <> | 2021-07-03 18:39:34 -0700 |
commit | cf86acee94652ac7cd8e8f313e6abf6c9901c398 (patch) | |
tree | e8e9d1157e2d64eb8d8f3baa1f8694bd3e7e108d /static/main.html | |
parent | ab6edbbe8044d5a3c7d9456bd15e3a74af35111a (diff) |
add some styling to news pull request
Diffstat (limited to 'static/main.html')
-rw-r--r-- | static/main.html | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/static/main.html b/static/main.html index 70e3c23..00b395f 100644 --- a/static/main.html +++ b/static/main.html @@ -40,6 +40,14 @@ background-color: #f9f9e0; {{ end }} } + + .box { + {{ if .Board.Restricted }} + background-color: #eff5ff; + {{ else }} + background-color: #f9f9e0; + {{ end }} + } .quote { color: #789922; @@ -76,8 +84,15 @@ </head> <body> <ul style="display: inline; padding:0;"> - {{range .Boards}} - <li style="display: inline;"><a href="{{.Location}}">{{.Name}}</a></li> + {{ $l := len .Boards }} + {{range $i, $e := .Boards}} + {{ if eq $i 0 }} + <li style="display: inline;">[<a href="{{.Location}}">{{$e.Name}} </a>/</li> + {{ else if eq $i (sub $l 1) }} + <li style="display: inline;"><a href="{{.Location}}">{{$e.Name}}</a>]</li> + {{ else }} + <li style="display: inline;"><a href="{{.Location}}">{{$e.Name}} </a>/</li> + {{ end }} {{end}} </ul> {{ if .Board.ModCred }} |