diff options
author | r <r@freesoftwareextremist.com> | 2019-12-21 05:48:48 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2019-12-21 05:48:48 +0000 |
commit | 2648484a1de4443fdb748edb144c90c4a7a37472 (patch) | |
tree | 1bc612d580501ea57688b845f50c5e7bd908c70d /templates | |
parent | 889f8da49637e908f203d6d9d195f7d585f8cd03 (diff) | |
download | bloat-2648484a1de4443fdb748edb144c90c4a7a37472.tar.gz bloat-2648484a1de4443fdb748edb144c90c4a7a37472.zip |
Add about page
Diffstat (limited to 'templates')
-rw-r--r-- | templates/about.tmpl | 18 | ||||
-rw-r--r-- | templates/navigation.tmpl | 1 |
2 files changed, 19 insertions, 0 deletions
diff --git a/templates/about.tmpl b/templates/about.tmpl new file mode 100644 index 0000000..0b4bea0 --- /dev/null +++ b/templates/about.tmpl @@ -0,0 +1,18 @@ +{{template "header.tmpl"}} +{{template "navigation.tmpl" .NavbarData}} +<div class="page-title"> About </div> + +<div> + <p> + A web client for <a href="https://pleroma.social" target="_blank">Mastodon Network</a>. + </p> + <p> + The source code is released under + <a href="https://creativecommons.org/share-your-work/public-domain/cc0" target="_blank">CC0</a> + and is available on + <a href="https://git.freesoftwareextremist.com/web" target="_blank">git.freesoftwareextremist.com/web</a>. + </P> +</div> + +{{template "footer.tmpl"}} + diff --git a/templates/navigation.tmpl b/templates/navigation.tmpl index d86971c..5338677 100644 --- a/templates/navigation.tmpl +++ b/templates/navigation.tmpl @@ -1,5 +1,6 @@ <div class="navigation"> <a href="/timeline">home</a> <a href="/notifications">notifications{{if gt .NotificationCount 0}} ({{.NotificationCount}}){{end}}</a> + <a href="/about">about</a> <a href="/signout">sign out</a> </div> |