diff options
author | FChannel0 <77419041+FChannel0@users.noreply.github.com> | 2021-08-20 23:25:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-20 23:25:47 -0700 |
commit | cc4165f07a406cdd89e6a3864cac6a367f281513 (patch) | |
tree | 6b8959d49acdb95f57dd10717e729a98e252471f /static/main.html | |
parent | 502558e0bdaf67ca4c012fc1983f42430b8854cd (diff) | |
parent | 8d28fd2ad688051fe06813026d82661b76617602 (diff) |
Merge pull request #54 from KushBlazingJudah/development
themes fixup
Diffstat (limited to 'static/main.html')
-rw-r--r-- | static/main.html | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/static/main.html b/static/main.html index 794a602..3e29053 100644 --- a/static/main.html +++ b/static/main.html @@ -10,7 +10,7 @@ <link rel="icon" type="image/png" href="/static/favicon.png"> <link rel="stylesheet" type="text/css" href="/static/css/themes/default.css" title="default"> {{ range .Themes }} - <link rel="alternate stylesheet" type="text/css" href="/static/css/themes/{{.}}.css" title="{{.}}"> + <link rel="alternate stylesheet" type="text/css" href="/static/css/themes/{{.}}.css" title="{{.}}" disabled> {{ end }} {{ template "header" . }} </head> @@ -41,20 +41,21 @@ {{ template "bottom" . }} + <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;"> Theme: <select id="themeSwitcher" onchange="setTheme(this.options[this.selectedIndex].value)"> + <option value="default">default</option> {{ range .Themes }} <option value="{{.}}">{{.}}</option> {{ end }} </select> </div> - <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> - <script src="/static/js/themes.js"></script> {{ template "script" . }} </body> |