2018-03-13 17:14:57 -07:00
|
|
|
<SettingsLayout page='settings/about' label="About Pinafore">
|
2019-10-24 19:03:03 -07:00
|
|
|
<div>
|
|
|
|
<!-- Use raw HTML to make the output smaller -->
|
|
|
|
{@html `
|
|
|
|
<h1>About Pinafore</h1>
|
|
|
|
|
|
|
|
<h2>Version ${version}</h2>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Pinafore is
|
|
|
|
<a rel="noopener" target="_blank"
|
|
|
|
href="https://github.com/nolanlawson/pinafore">free and open-source software</a>
|
|
|
|
created by
|
|
|
|
<a rel="noopener" target="_blank" href="https://nolanlawson.com">Nolan Lawson</a>
|
|
|
|
and distributed under the
|
|
|
|
<a rel="noopener" target="_blank"
|
|
|
|
href="https://github.com/nolanlawson/pinafore/blob/master/LICENSE">GNU Affero General Public License</a>.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<h2 id="privacy-policy">Privacy Policy</h2>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Pinafore does not store any personal information on its servers,
|
|
|
|
including but not limited to names, email addresses,
|
|
|
|
IP addresses, posts, and photos.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Pinafore is a static site. All data is stored locally in your browser and shared with the fediverse
|
|
|
|
instance(s) you connect to.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<h2>Credits</h2>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Icons provided by <a rel="noopener" target="_blank" href="http://fontawesome.io/">Font Awesome</a>.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Logo thanks to "sailboat" by Gregor Cresnar from
|
|
|
|
<a rel="noopener" target="_blank" href="https://thenounproject.com/">the Noun Project</a>.
|
|
|
|
</p>
|
|
|
|
`}
|
|
|
|
</div>
|
2018-03-13 17:14:57 -07:00
|
|
|
</SettingsLayout>
|
|
|
|
<script>
|
|
|
|
import SettingsLayout from '../../_components/settings/SettingsLayout.html'
|
|
|
|
|
2018-12-11 07:31:48 -08:00
|
|
|
import { version } from '../../../../package.json'
|
2018-03-28 18:16:42 -07:00
|
|
|
|
2018-03-13 17:14:57 -07:00
|
|
|
export default {
|
|
|
|
components: {
|
2019-10-24 19:03:03 -07:00
|
|
|
SettingsLayout
|
2018-03-28 18:16:42 -07:00
|
|
|
},
|
|
|
|
data: () => ({
|
|
|
|
version
|
|
|
|
})
|
2018-04-19 21:38:01 -07:00
|
|
|
}
|
2018-12-11 07:31:48 -08:00
|
|
|
</script>
|