Formatting html files

This commit is contained in:
joeyak 2019-03-17 17:31:48 -04:00
parent 417db785ce
commit 708056a86e
3 changed files with 79 additions and 72 deletions

View File

@ -10,9 +10,11 @@
<script type="application/javascript" src="/static/js/both.js"></script>
{{template "header" .}}
</head>
<body class="scrollbar">
<div class="root">
{{template "body" .}}
</div>
</body>
</html>
</html>

View File

@ -6,14 +6,16 @@
<h2>Commands</h2>
<dl>
{{range $k, $v := .Commands}}
<dt>{{$k}}</dt><dd>{{$v}}</dd>
<dt>{{$k}}</dt>
<dd>{{$v}}</dd>
{{end}}
</dl>
{{if .ModCommands}}
<h2>Moderator</h2>
<dl>
{{range $k, $v := .ModCommands}}
<dt>{{$k}}</dt><dd>{{$v}}</dd>
<dt>{{$k}}</dt>
<dd>{{$v}}</dd>
{{end}}
</dl>
{{end}}
@ -21,9 +23,10 @@
<h2>Administrator</h2>
<dl>
{{range $k, $v := .AdminCommands}}
<dt>{{$k}}</dt><dd>{{$v}}</dd>
<dt>{{$k}}</dt>
<dd>{{$v}}</dd>
{{end}}
</dl>
{{end}}
</div>
{{end}}
{{end}}

View File

@ -1,76 +1,78 @@
{{define "header"}}
{{ if .Chat }}
<script type="application/javascript" src="/static/js/wasm_exec.js"></script>
<script type="application/javascript" src="/static/js/chat.js"></script>
<script>
maxMessageCount = {{ .MessageHistoryCount }}
</script>
<style>
.root {
display: grid;
}
</style>
{{ end }}
{{ if .Chat }}
<script type="application/javascript" src="/static/js/wasm_exec.js"></script>
<script type="application/javascript" src="/static/js/chat.js"></script>
<script>
maxMessageCount = {{ .MessageHistoryCount }}
</script>
<style>
.root {
display: grid;
}
</style>
{{ end }}
{{ if .Video }}
<script type="application/javascript" src="/static/js/flv.min.js"></script>
<script type="application/javascript" src="/static/js/video.js"></script>
{{ if not .Chat }}
<style>
#videoElement {
height: 99vh;
}
</style>
{{ end }}
{{ end }}
{{ if .Video }}
<script type="application/javascript" src="/static/js/flv.min.js"></script>
<script type="application/javascript" src="/static/js/video.js"></script>
{{ if not .Chat }}
<style>
#videoElement {
height: 99vh;
}
</style>
{{ end }}
{{ end }}
{{ if and .Video .Chat }}
<style>
.root {
grid-template-columns: 5fr 1fr;
}
</style>
{{ end }}
{{ if and .Video .Chat }}
<style>
.root {
grid-template-columns: 5fr 1fr;
}
</style>
{{ end }}
{{end}}
{{define "body"}}
{{ if .Video }}
<video id="videoElement" controls autoplay x5-video-player-type="h5" x5-video-player-fullscreen="true"
playsinline webkit-playsinline>
Your browser is too old and doesn't support HTML5 video.
</video>
{{ end }}
{{ if .Video }}
<video id="videoElement" controls autoplay x5-video-player-type="h5" x5-video-player-fullscreen="true" playsinline
webkit-playsinline>
Your browser is too old and doesn't support HTML5 video.
</video>
{{ end }}
{{ if .Chat }}
<div id="chatwindow">
<div id="chat" style="display: none;">
<input id="hiddenColorPicker" type="color" hidden/>
<div id="notifiyBox"></div>
<div id="hidden">
<div id="chatButtons">
<button class="button pretty-button" onclick="auth();">Auth</button>
<button class="button pretty-button" onclick="help();">Help</button>
<button class="button pretty-button" onclick="$('#hiddenColorPicker').trigger('click');">Color</button>
{{ if .Video }}
<button class="button pretty-button" onclick="initPlayer();">Reload Player</button>
{{ end }}
</div>
<hr/>
<a id="playing" target="_blank"></a>
</div>
<div id="messages" class="scrollbar"></div>
<div id="msgbox">
<div id="suggestions"></div>
<textarea id="msg"></textarea>
</div>
<button id="send" class="button" onclick="sendChat();">Send</button>
<div><!-- This is an empty div so there can be an empty space below the send button --></div>
</div>
<div id="joinbox">
<p style="color:#e5e0e5">Please enter your name to Join the chat</P>
<input id="name" maxlength="36">
<button id="join" class="button pretty-button" onclick="join();">Join</button>
{{ if .Chat }}
<div id="chatwindow">
<div id="chat" style="display: none;">
<input id="hiddenColorPicker" type="color" hidden />
<div id="notifiyBox"></div>
<div id="hidden">
<div id="chatButtons">
<button class="button pretty-button" onclick="auth();">Auth</button>
<button class="button pretty-button" onclick="help();">Help</button>
<button class="button pretty-button" onclick="$('#hiddenColorPicker').trigger('click');">Color</button>
{{ if .Video }}
<button class="button pretty-button" onclick="initPlayer();">Reload Player</button>
{{ end }}
</div>
<hr />
<a id="playing" target="_blank"></a>
</div>
{{ end }}
{{end}}
<div id="messages" class="scrollbar"></div>
<div id="msgbox">
<div id="suggestions"></div>
<textarea id="msg"></textarea>
</div>
<button id="send" class="button" onclick="sendChat();">Send</button>
<div>
<!-- This is an empty div so there can be an empty space below the send button -->
</div>
</div>
<div id="joinbox">
<p style="color:#e5e0e5">Please enter your name to Join the chat</P>
<input id="name" maxlength="36">
<button id="join" class="button pretty-button" onclick="join();">Join</button>
</div>
</div>
{{ end }}
{{end}}