summaryrefslogtreecommitdiff
path: root/web/template/footer.tmpl
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2022-07-04 16:23:59 +0200
committerLibravatar GitHub <noreply@github.com>2022-07-04 16:23:59 +0200
commit16ddad36b252a1dbe489b8fc58461570be9ef8b4 (patch)
tree9b4b8d46ef04f665424e5122c556bcec96f71933 /web/template/footer.tmpl
parent[bugfix] Visibility fixes (#687) (diff)
downloadgotosocial-16ddad36b252a1dbe489b8fc58461570be9ef8b4.tar.xz
[frontend] Redesign / color scheme (#688)
* fix css indentation * profile styling update * update status styling to match profile * empty header fix * generate random avatars for thread views * appease the linter gods * upgrade deps * turn profile accent into border + $bg background * upgrade deps * small accessibility tweaks * general redesign, clearer css variables * configure instance.Version for testrig * footer styling * add sublte borders to box-shadow for separation * accessible blues, other tweaks * background bg_accent * fix viewport * change client entry buttons to links * cw button styling * status display+username spacing * small thread view tweaks * color tweaks for accessible contrasts * use Noto Sans * biiit less dark bg * .info contrast, border Co-authored-by: f0x <f0x@cthu.lu>
Diffstat (limited to 'web/template/footer.tmpl')
-rw-r--r--web/template/footer.tmpl26
1 files changed, 14 insertions, 12 deletions
diff --git a/web/template/footer.tmpl b/web/template/footer.tmpl
index 075682f60..11e14ba4d 100644
--- a/web/template/footer.tmpl
+++ b/web/template/footer.tmpl
@@ -1,19 +1,21 @@
<!-- footer.tmpl -->
+ </div>
<footer>
<div id="version">
- GoToSocial: <span class="accent">{{.instance.Version}}</span><br>
- <a href="https://github.com/superseriousbusiness/gotosocial">Source Code</a>
- </div>
- <div id="contact">
- {{ if .instance.ContactAccount }}
- Contact: <a href="{{.instance.ContactAccount.URL}}" class="nounderline">{{.instance.ContactAccount.Username}}</a><br>
- {{ end }}
- </div>
- <div id="email">
- {{ if .instance.Email }}
- Email: <a href="mailto:{{.instance.Email}}" class="nounderline">{{.instance.Email}}</a><br>
- {{ end }}
+ <a name="Source code" href="https://github.com/superseriousbusiness/gotosocial">
+ GoToSocial <span class="accent">{{.instance.Version}}</span>
+ </a>
</div>
+ {{ if .instance.ContactAccount }}
+ <div id="contact">
+ Contact: <a href="{{.instance.ContactAccount.URL}}" class="nounderline">{{.instance.ContactAccount.Username}}</a><br>
+ </div>
+ {{ end }}
+ {{ if .instance.Email }}
+ <div id="email">
+ Email: <a href="mailto:{{.instance.Email}}" class="nounderline">{{.instance.Email}}</a><br>
+ </div>
+ {{ end }}
</footer>
</div>
{{ if .javascript }}