pinafore/routes/_components/Layout.html
2018-01-15 18:29:28 -08:00

16 lines
190 B
HTML

<Nav page={{page}} />
<div class="container">
<main>
<slot></slot>
</main>
</div>
<script>
import Nav from './Nav.html';
export default {
components: {
Nav
}
};
</script>