Pinafore-Web-Client-Frontend/routes/settings/about.html

45 lines
1.2 KiB
HTML
Raw Normal View History

2018-01-09 02:44:29 +01:00
<:Head>
2018-02-09 07:38:33 +01:00
<title>Pinafore About</title>
2018-01-09 02:44:29 +01:00
</:Head>
<Layout page='settings'>
2018-01-13 21:12:17 +01:00
<SettingsLayout page='settings/about' label="About Pinafore">
2018-01-13 19:53:25 +01:00
<h1>About Pinafore</h1>
2018-01-09 02:44:29 +01:00
2018-03-07 18:25:07 +01:00
<p>
2018-03-10 23:09:47 +01:00
Pinafore is
<ExternalLink href="https://github.com/nolanlawson/pinafore">free and open-source software</ExternalLink>
created by
<ExternalLink href="https://nolanlawson.com">Nolan Lawson</ExternalLink>
and distributed under the
<ExternalLink href="https://github.com/nolanlawson/pinafore/blob/master/LICENSE">GNU Affero General Public
License
</ExternalLink>
.
2018-03-07 18:25:07 +01:00
</p>
2018-01-09 02:44:29 +01:00
2018-03-10 23:09:47 +01:00
<p>Icons provided by
<ExternalLink href="http://fontawesome.io/">Font Awesome</ExternalLink>
.
</p>
2018-01-14 20:40:27 +01:00
2018-03-10 23:09:47 +01:00
<p>Logo thanks to "sailboat" by Gregor Cresnar from
<ExternalLink href="https://thenounproject.com/">the Noun Project</ExternalLink>
.
</p>
2018-01-09 02:44:29 +01:00
</SettingsLayout>
</Layout>
<script>
2018-03-10 23:09:47 +01:00
import Layout from '../_components/Layout.html'
import SettingsLayout from './_components/SettingsLayout.html'
import ExternalLink from '../_components/ExternalLink.html'
2018-01-09 02:44:29 +01:00
2018-03-10 23:09:47 +01:00
export default {
components: {
Layout,
SettingsLayout,
ExternalLink
}
}
2018-01-09 02:44:29 +01:00
</script>