Files
sapper/test/app/routes/5xx.html
2018-02-18 09:48:32 -05:00

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>