zed/server/templates/error.hbs

15 lines
491 B
Handlebars
Raw Normal View History

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