bloat/templates/about.tmpl

104 lines
2.3 KiB
Cheetah
Raw Normal View History

2020-01-14 16:57:16 +00:00
{{with .Data}}
2020-02-18 22:15:37 +00:00
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
2019-12-21 05:48:48 +00:00
2020-10-19 06:06:41 +00:00
<div class="page-title"> About </div>
2019-12-21 05:48:48 +00:00
<div>
<p>
2020-10-19 10:08:35 +00:00
A web client for <a href="https://pleroma.social" target="_blank">Mastadon Network</a>.
2019-12-21 05:48:48 +00:00
</p>
<p>
The source code is released under
2020-03-04 16:27:06 +00:00
<a href="https://creativecommons.org/publicdomain/zero/1.0/legalcode" target="_blank">CC0</a>
2019-12-21 05:48:48 +00:00
and is available on
2020-01-01 15:58:27 +00:00
<a href="https://git.freesoftwareextremist.com/bloat" target="_blank">git.freesoftwareextremist.com/bloat</a>.
2021-04-10 10:21:33 +00:00
<br>
This version is a fork by alyssa, you can find the source code at <a href="https://tulpa.dev/alyssa/bloat">tulpa.dev/alyssa/bloat</a>.
2019-12-21 05:48:48 +00:00
</P>
</div>
2020-10-19 06:06:41 +00:00
<div class="page-title"> Keyboard shortcuts </div>
<div>
<table class="keyboard-shortcuts">
<tr>
<td> User profile </td>
<td> <kbd>0</kbd> </td>
</tr>
<tr>
<td> Home timeline </td>
<td> <kbd>1</kbd> </td>
</tr>
<tr>
<td> Direct timeline </td>
<td> <kbd>2</kbd> </td>
</tr>
<tr>
<td> Local timeline </td>
<td> <kbd>3</kbd> </td>
</tr>
<tr>
<td> The Whole Known Network </td>
<td> <kbd>4</kbd> </td>
</tr>
<tr>
<td> Search </td>
<td> <kbd>5</kbd> </td>
</tr>
<tr>
<td> About </td>
<td> <kbd>6</kbd> </td>
</tr>
<tr>
<td> Settings </td>
<td> <kbd>7</kbd> </td>
</tr>
<tr>
<td> Signout </td>
<td> <kbd>8</kbd> </td>
</tr>
<tr>
<td> Emoji list </td>
<td> <kbd>L</kbd> </td>
</tr>
<tr>
<td> Edit post </td>
<td> <kbd>E</kbd> </td>
</tr>
<tr>
<td> Post format </td>
<td> <kbd>F</kbd> </td>
</tr>
<tr>
<td> Post scope </td>
<td> <kbd>S</kbd> </td>
</tr>
<tr>
<td> Post NSFW </td>
<td> <kbd>N</kbd> </td>
</tr>
<tr>
<td> Post attachments </td>
<td> <kbd>A</kbd> </td>
</tr>
<tr>
<td> Submit post </td>
<td> <kbd>P</kbd> </td>
</tr>
<tr>
<td> Refresh notifications </td>
<td> <kbd>R</kbd> </td>
</tr>
<tr>
<td> Read notifications </td>
<td> <kbd>C</kbd> </td>
</tr>
</table>
<p>
You can activate the shortcuts by pressing the associated key with your browser's <a href="https://en.wikipedia.org/wiki/Access_key#Access_in_different_browsers" target="_blank">accesskey modifier</a>,
which is generally <kbd>Alt</kbd> + <kbd>Shift</kbd>.
</p>
</div>
2019-12-21 05:48:48 +00:00
{{template "footer.tmpl"}}
2020-01-14 16:57:16 +00:00
{{end}}
2019-12-21 05:48:48 +00:00