Files
sapper-template/routes/5xx.html
Rich Harris d55a42711e fix warnings
2018-03-04 19:38:10 -05:00

35 lines
463 B
HTML

<:Head>
<title>Internal server error</title>
</: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>