mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-14 20:14:39 +00:00
19 lines
351 B
HTML
19 lines
351 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 { prefetch } from '../../__sapper__/client.js';
|
|
|
|
export default {
|
|
methods: {
|
|
prefetch
|
|
}
|
|
};
|
|
</script> |