1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-13 09:50:40 +01:00

29 lines
956 B
HTML
Raw Normal View History

2018-01-08 17:44:29 -08:00
<:Head>
2018-02-08 22:38:33 -08:00
<title>Pinafore About</title>
2018-01-08 17:44:29 -08:00
</:Head>
<Layout page='settings'>
2018-01-13 12:12:17 -08:00
<SettingsLayout page='settings/about' label="About Pinafore">
2018-01-13 10:53:25 -08:00
<h1>About Pinafore</h1>
2018-01-08 17:44:29 -08:00
2018-01-28 19:01:51 -08:00
<p>Pinafore is <ExternalLink href="https://github.com/nolanlawson/pinafore/">open-source software</ExternalLink> created by <ExternalLink href="https://nolanlawson.com/">Nolan Lawson</ExternalLink>.</p>
2018-01-08 17:44:29 -08:00
2018-01-28 19:01:51 -08:00
<p>Icons provided by <ExternalLink href="http://fontawesome.io/">Font Awesome</ExternalLink>.</p>
2018-01-14 11:40:27 -08:00
2018-01-28 19:01:51 -08:00
<p>Logo thanks to "sailboat" by Gregor Cresnar from <ExternalLink href="https://thenounproject.com/">the Noun Project</ExternalLink>.</p>
2018-01-08 17:44:29 -08:00
</SettingsLayout>
</Layout>
<script>
import Layout from '../_components/Layout.html';
import SettingsLayout from './_components/SettingsLayout.html'
2018-01-28 19:01:51 -08:00
import ExternalLink from '../_components/ExternalLink.html'
2018-01-08 17:44:29 -08:00
export default {
components: {
Layout,
2018-01-28 19:01:51 -08:00
SettingsLayout,
ExternalLink
2018-01-08 17:44:29 -08:00
}
};
</script>