diff options
author | FChannel <> | 2021-10-24 10:40:45 -0700 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:29 -0700 |
commit | 48fefb76c0a908cc3fa00abc9c090ce3ac8cb560 (patch) | |
tree | a7a24aec9f43222949e1f004fd5cd8a247e5024e /views/partials/footer.html | |
parent | 65e79e6a743f447f320595dafec530212a568b9d (diff) |
gofiber conversion, index, board posts, board post hooked up
Diffstat (limited to 'views/partials/footer.html')
-rw-r--r-- | views/partials/footer.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/views/partials/footer.html b/views/partials/footer.html new file mode 100644 index 0000000..efbde4f --- /dev/null +++ b/views/partials/footer.html @@ -0,0 +1,13 @@ +<div align="center" style="width: 500px; margin:0 auto; margin-top: 50px;"> + [<a href="/">Home</a>] [<a href="/static/rules.html">Rules</a>] [<a href="/static/faq.html">FAQ</a>] + <p>All trademarks and copyrights on this page are owned by their respective parties.</p> +</div> + +<div style="float: right; margin-bottom: 25px;"> + Theme: + <select id="themeSwitcher" onchange="setTheme(this.options[this.selectedIndex].value)"> + {{ range .Themes }} + <option value="{{.}}">{{.}}</option> + {{ end }} + </select> +</div> |