zed/server/templates/error.hbs

20 lines
624 B
Handlebars
Raw Normal View History

{{#> layout }}
<div class="bg-white py-8">
<div class="container mx-auto my-16 px-8 md:px-12 text-2xl md:text-4xl">
Sorry, we encountered a {{status}} error: {{reason}}.
</div>
</div>
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">
<h1 class="text-white text-4xl font-display font-extralight mb-10">Sorry, we encountered a {{status}} error:</h1>
<p class="leading-7">
{{reason}}
</p>
<p class="leading-7">
Try refreshing or going <a href="/">home</a>.
</p>
</article>
</div>
{{/layout}}