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

33 lines
1.1 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>
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>.
</p>
2018-01-09 02:44:29 +01:00
2018-01-29 04:01:51 +01:00
<p>Icons provided by <ExternalLink href="http://fontawesome.io/">Font Awesome</ExternalLink>.</p>
2018-01-14 20:40:27 +01:00
2018-01-29 04:01:51 +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>
import Layout from '../_components/Layout.html';
import SettingsLayout from './_components/SettingsLayout.html'
2018-01-29 04:01:51 +01:00
import ExternalLink from '../_components/ExternalLink.html'
2018-01-09 02:44:29 +01:00
export default {
components: {
Layout,
2018-01-29 04:01:51 +01:00
SettingsLayout,
ExternalLink
2018-01-09 02:44:29 +01:00
}
};
</script>