zed/crates/server/templates/error.hbs

15 lines
511 B
Handlebars
Raw Normal View History

{{#> layout }}
2021-09-20 14:34:18 +00:00
2021-09-22 15:38:14 +00:00
<div class="max-w-screen-lg p-10 mx-auto text-main font-extralight lg:p-20">
2021-09-20 14:34:18 +00:00
<article class="max-w-xl">
2021-09-22 15:38:14 +00:00
<h1 class="mb-5 text-4xl text-white font-display font-extralight">Sorry!</h1>
<p class="mb-5 leading-relaxed">
2021-09-20 16:02:35 +00:00
Looks like we encountered a {{status}} error: {{reason}}
2021-09-20 14:34:18 +00:00
</p>
<p class="leading-relaxed">
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}}