Files
sapper-template/routes/about.html
Rich Harris a7cb019102 update to v2
2018-04-19 11:05:29 -04:00

19 lines
289 B
HTML

<svelte:head>
<title>About</title>
</svelte:head>
<Layout page='about'>
<h1>About this site</h1>
<p>This is the 'about' page. There's not much here.</p>
</Layout>
<script>
import Layout from './_components/Layout.html';
export default {
components: {
Layout
}
};
</script>