mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 03:05:12 +00:00
26 lines
428 B
HTML
26 lines
428 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 on:click='goto("/blog/what-is-sapper")'>What is Sapper?</button>
|
|
</Layout>
|
|
|
|
<script>
|
|
import Layout from './_components/Layout.html';
|
|
import { goto } from '../../../runtime/app.js';
|
|
|
|
export default {
|
|
components: {
|
|
Layout
|
|
},
|
|
|
|
methods: {
|
|
goto
|
|
}
|
|
};
|
|
</script> |