pinafore/routes/settings/about.html

25 wiersze
531 B
HTML
Czysty Zwykły widok Historia

2018-01-09 01:44:29 +00:00
<:Head>
2018-01-13 18:53:25 +00:00
<title>About Pinafore</title>
2018-01-09 01:44:29 +00:00
</:Head>
<Layout page='settings'>
<SettingsLayout page='about'>
2018-01-13 18:53:25 +00:00
<h1>About Pinafore</h1>
2018-01-09 01:44:29 +00: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>