initial commit

This commit is contained in:
Rich Harris
2017-12-17 14:47:18 -05:00
commit 600360665d
27 changed files with 893 additions and 0 deletions

19
routes/about.html Normal file
View File

@@ -0,0 +1,19 @@
<:Head>
<title>About</title>
</: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>