19 lines
277 B
HTML
19 lines
277 B
HTML
<: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> |