mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-13 19:45:26 +00:00
28 lines
547 B
HTML
28 lines
547 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>
|
|
|
|
<button class='goto' on:click='goto("/blog/what-is-sapper")'>What is Sapper?</button>
|
|
<button class='prefetch' on:click='goto("/blog/why-the-name")'>Why the name?</button>
|
|
</Layout>
|
|
|
|
<script>
|
|
import Layout from './_components/Layout.html';
|
|
import { goto, prefetch } from '../../../runtime.js';
|
|
|
|
export default {
|
|
components: {
|
|
Layout
|
|
},
|
|
|
|
methods: {
|
|
goto,
|
|
prefetch
|
|
}
|
|
};
|
|
</script> |