summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorSrxr <10549030+srxr@users.noreply.github.com>2021-06-08 21:22:14 +0800
committerGitHub <noreply@github.com>2021-06-08 23:22:14 +1000
commite743a9a425ee3197649aa2c4996b8566bf75896d (patch)
tree3fea1b47e2d180684cecc356b3194e1d8cae7540 /templates
parent7e3d72c24f96d33a89889b0f441b2b76367bd0e7 (diff)
Remove proprietary notices about video (#40)
* Make content proprietary configurable * Update README * Fixed a few template context bugs Co-authored-by: James Mills <prologic@shortcircuit.net.au>
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html3
-rw-r--r--templates/upload.html2
2 files changed, 3 insertions, 2 deletions
diff --git a/templates/base.html b/templates/base.html
index 1b0ab6c..8f30aad 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -1,5 +1,6 @@
{{define "base"}}
{{ $playing := .Playing }}
+{{ $config := .Config }}
<!DOCTYPE html>
<html lang="en" prefix="og: https://ogp.me/ns#">
<head>
@@ -37,7 +38,7 @@
</main>
<footer>
<p><a href="https://github.com/prologic/tube">Tube</a> is CopyRight © 2020 <a href="https://github.com/prologic">James Mills / prologic</a>. All Rights Reserved.</p>
- <p>All Content herein Public Domain and User Contributed.</p>
+ {{if .Config.Copyright.Content}}<p>{{ $config.Copyright.Content }}</p>{{end}}
</footer>
</body>
{{ template "scripts" . }}
diff --git a/templates/upload.html b/templates/upload.html
index 2967416..54c2ccd 100644
--- a/templates/upload.html
+++ b/templates/upload.html
@@ -36,6 +36,6 @@
</div>
{{end}}
{{define "scripts"}}
- <script>window['MAX_UPLOAD_SIZE'] = '{{.MAX_UPLOAD_SIZE}}';</script>
+ <script>window['MAX_UPLOAD_SIZE'] = '{{.Config.Server.MaxUploadSize}}';</script>
<script type="application/javascript" src="/static/upload.js"></script>
{{end}}