-
-
Notifications
You must be signed in to change notification settings - Fork 210
/
error-404.hbs
24 lines (19 loc) · 853 Bytes
/
error-404.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{!-- Layout --}}
{{!< default }}
<section class="page-error-wrap container mx-auto px-4 max-w-4xl text-center py-vw4">
<h1 class="page-error-title text-title text-7xl lg:text-9xl">404</h1>
<h2 class="mt-4 text-2xl text-title lg:text-4xl">{{t "Oops... Page Not Found!"}}</h2>
<p class="my-10 text-xl text-gray-500">{{t "The page you are looking for does not exist. It might have been moved or deleted."}}</p>
<a href="{{@site.url}}" class="button is-large is-black">{{t "Go to home"}}</a>
</section>
{{#get "posts" limit="4" include="tags" as |recents| }}
<section class="py-10">
<div class="container mx-auto">
<div class="grid gap-8 md:grid-cols-2 lg:grid-cols-4">
{{#foreach recents}}
{{> "story/story-grid" classTitle='text-xl'}}
{{/foreach}}
</div>
</div>
</section>
{{/get}}