mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-13 11:35:28 +00:00
19 lines
267 B
HTML
19 lines
267 B
HTML
<:Head>
|
|
<title>Internal server error</title>
|
|
</:Head>
|
|
|
|
<Layout page='home'>
|
|
<h1>Internal server error</h1>
|
|
<p>{{error.message}}</p>
|
|
</Layout>
|
|
|
|
<script>
|
|
import Layout from './_components/Layout.html';
|
|
|
|
export default {
|
|
components: {
|
|
Layout
|
|
}
|
|
};
|
|
</script>
|