Pinafore-Web-Client-Frontend/routes/local.html

19 lines
280 B
HTML

<:Head>
<title>Local</title>
</:Head>
<Layout page='local'>
<h1>Local</h1>
<p>This is the 'local' page. There's not much here.</p>
</Layout>
<script>
import Layout from './_components/Layout.html';
export default {
components: {
Layout
}
};
</script>