Files
sapper-template/routes/5xx.html
Rich Harris a7cb019102 update to v2
2018-04-19 11:05:29 -04:00

35 lines
475 B
HTML

<svelte:head>
<title>Internal server error</title>
</svelte:head>
<Layout page='home'>
<h1>Internal server error</h1>
</Layout>
<style>
h1 {
text-align: center;
margin: 0 auto;
font-size: 2.8em;
text-transform: uppercase;
font-weight: 700;
margin: 0 0 0.5em 0;
}
@media (min-width: 480px) {
h1 {
font-size: 4em;
}
}
</style>
<script>
import Layout from './_components/Layout.html';
export default {
components: {
Layout
}
};
</script>