pinafore/routes/index.html

20 lines
264 B
HTML

<:Head>
<title>Sapper project template</title>
</:Head>
<Layout page='home'>
<h1>Home page!</h1>
<p>This is the home page.</p>
</Layout>
<script>
import Layout from './_components/Layout.html';
export default {
components: {
Layout
}
};
</script>