pinafore/routes/settings/about.html

25 lines
563 B
HTML
Raw Normal View History

2018-01-09 02:44:29 +01:00
<:Head>
2018-01-13 19:53:25 +01:00
<title>About Pinafore</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
<p>Pinafore is open-source software created by Nolan Lawson.</p>
<p>Icon thanks to sailboat by Gregor Cresnar from the Noun Project.</p>
</SettingsLayout>
</Layout>
<script>
import Layout from '../_components/Layout.html';
import SettingsLayout from './_components/SettingsLayout.html'
export default {
components: {
Layout,
SettingsLayout
}
};
</script>