pinafore/routes/settings/about.html

33 wiersze
1.1 KiB
HTML
Czysty Zwykły widok Historia

2018-01-09 01:44:29 +00:00
<:Head>
2018-02-09 06:38:33 +00:00
<title>Pinafore – About</title>
2018-01-09 01:44:29 +00:00
</:Head>
<Layout page='settings'>
2018-01-13 20:12:17 +00:00
<SettingsLayout page='settings/about' label="About Pinafore">
2018-01-13 18:53:25 +00:00
<h1>About Pinafore</h1>
2018-01-09 01:44:29 +00:00
2018-03-07 17:25:07 +00: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 01:44:29 +00:00
2018-01-29 03:01:51 +00:00
<p>Icons provided by <ExternalLink href="http://fontawesome.io/">Font Awesome</ExternalLink>.</p>
2018-01-14 19:40:27 +00:00
2018-01-29 03:01:51 +00:00
<p>Logo thanks to "sailboat" by Gregor Cresnar from <ExternalLink href="https://thenounproject.com/">the Noun Project</ExternalLink>.</p>
2018-01-09 01:44:29 +00:00
</SettingsLayout>
</Layout>
<script>
import Layout from '../_components/Layout.html';
import SettingsLayout from './_components/SettingsLayout.html'
2018-01-29 03:01:51 +00:00
import ExternalLink from '../_components/ExternalLink.html'
2018-01-09 01:44:29 +00:00
export default {
components: {
Layout,
2018-01-29 03:01:51 +00:00
SettingsLayout,
ExternalLink
2018-01-09 01:44:29 +00:00
}
};
</script>