mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 11:15:14 +00:00
27 lines
439 B
HTML
27 lines
439 B
HTML
<svelte:head>
|
|
<title>About</title>
|
|
</svelte:head>
|
|
|
|
<h1>About this site</h1>
|
|
|
|
<p>This is the 'about' page. There's not much here.</p>
|
|
|
|
<button class='prefetch' on:click='prefetch("blog/why-the-name")'>Why the name?</button>
|
|
|
|
<script>
|
|
import { goto, prefetch } from '../../../runtime.js';
|
|
|
|
export default {
|
|
oncreate() {
|
|
window.goto = goto;
|
|
},
|
|
|
|
ondestroy() {
|
|
window.goto = null;
|
|
},
|
|
|
|
methods: {
|
|
prefetch
|
|
}
|
|
};
|
|
</script> |