pinafore/routes/index.html

23 lines
529 B
HTML
Raw Normal View History

2018-01-07 00:51:25 +01:00
<:Head>
2018-01-07 06:52:41 +01:00
<title>Home</title>
2018-01-07 00:51:25 +01:00
</:Head>
<Layout page='home'>
2018-01-08 00:11:17 +01:00
<h1>Pinafore for Mastodon</h1>
2018-01-07 00:51:25 +01:00
2018-01-08 00:11:17 +01:00
<p>Pinafore is a web client for <a href="https://joinmastodon.org">Mastodon</a>, optimized for performance and simplicity.</p>
<p>To get started, <a href="/settings/instance-wizard">log in to an instance</a>.</p>
<p>Don't have an instance? <a href="https://joinmastodon.org">Join Mastodon!</a></p>
2018-01-07 00:51:25 +01:00
</Layout>
<script>
import Layout from './_components/Layout.html';
export default {
components: {
Layout
}
};
2018-01-08 00:11:17 +01:00
</script>