Add about page

This commit is contained in:
r 2019-12-21 05:48:48 +00:00
parent 889f8da496
commit 2648484a1d
8 changed files with 75 additions and 0 deletions

18
templates/about.tmpl Normal file
View file

@ -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"}}

View file

@ -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>