diff --git a/static/base.html b/static/base.html index 49d9d80..7c4dfc4 100644 --- a/static/base.html +++ b/static/base.html @@ -10,9 +10,11 @@ {{template "header" .}} +
{{template "body" .}}
- + + \ No newline at end of file diff --git a/static/help.html b/static/help.html index 683a0e3..83ecb99 100644 --- a/static/help.html +++ b/static/help.html @@ -6,14 +6,16 @@

Commands

{{range $k, $v := .Commands}} -
{{$k}}
{{$v}}
+
{{$k}}
+
{{$v}}
{{end}}
{{if .ModCommands}}

Moderator

{{range $k, $v := .ModCommands}} -
{{$k}}
{{$v}}
+
{{$k}}
+
{{$v}}
{{end}}
{{end}} @@ -21,9 +23,10 @@

Administrator

{{range $k, $v := .AdminCommands}} -
{{$k}}
{{$v}}
+
{{$k}}
+
{{$v}}
{{end}}
{{end}} -{{end}} +{{end}} \ No newline at end of file diff --git a/static/main.html b/static/main.html index 02cf9a3..66fa034 100644 --- a/static/main.html +++ b/static/main.html @@ -1,76 +1,78 @@ {{define "header"}} - {{ if .Chat }} - - - - - {{ end }} +{{ if .Chat }} + + + + +{{ end }} - {{ if .Video }} - - - {{ if not .Chat }} - - {{ end }} - {{ end }} +{{ if .Video }} + + +{{ if not .Chat }} + +{{ end }} +{{ end }} - {{ if and .Video .Chat }} - - {{ end }} +{{ if and .Video .Chat }} + +{{ end }} {{end}} {{define "body"}} - {{ if .Video }} - - {{ end }} +{{ if .Video }} + +{{ end }} - {{ if .Chat }} -
- -
-

Please enter your name to Join the chat

- - +{{ if .Chat }} +
+ +
+

Please enter your name to Join the chat

+ + +
+
+{{ end }} +{{end}} \ No newline at end of file