zed/server/templates/error.hbs
2021-09-22 11:38:14 -04:00

15 lines
499 B
Handlebars

{{#> layout }}
<div class="max-w-screen-lg p-10 mx-auto text-main font-extralight lg:p-20">
<article class="max-w-xl">
<h1 class="mb-5 text-4xl text-white font-display font-extralight">Sorry!</h1>
<p class="mb-5 leading-7">
Looks like we encountered a {{status}} error: {{reason}}
</p>
<p class="leading-7">
Try refreshing or going <a class="underline hover:no-underline" href="/">home</a>.
</p>
</article>
</div>
{{/layout}}