liebling/error-404.hbs

32 lines
1.1 KiB
Handlebars
Raw Normal View History

2019-04-14 18:41:25 +00:00
{{!--
This error template is used for all 404 errors, which might occur on your site.
--}}
2020-11-07 19:18:06 +00:00
{{!-- This block preloads specific assets for the 404 page --}}
{{#contentFor "preload"}}
2020-07-07 15:13:29 +00:00
<link rel="preload" href="{{asset "css/404.css"}}" as="style" />
2020-11-07 19:18:06 +00:00
{{/contentFor}}
2020-07-07 15:13:29 +00:00
2020-11-07 19:18:06 +00:00
{{!-- This block loads specific styles for the 404 page --}}
{{#contentFor "styles"}}
2020-07-07 15:13:29 +00:00
<link rel="stylesheet" type="text/css" href="{{asset "css/404.css"}}" media="screen" />
2020-07-02 20:23:00 +00:00
{{/contentFor}}
2019-04-14 18:41:25 +00:00
{{!-- The tag below means: insert everything in this file
into the {body} of the default.hbs template --}}
2019-02-23 12:30:29 +00:00
{{!< default}}
2019-10-27 16:57:53 +00:00
{{!-- Special header.hbs partial to generate the <header> tag --}}
2019-02-24 21:06:24 +00:00
{{> header}}
2019-02-23 12:30:29 +00:00
2019-03-12 10:39:01 +00:00
<main class="l-fullscreen">
2019-02-23 12:30:29 +00:00
<section class="l-fullscreen__content" data-aos="fade-up" data-aos-delay="300">
<h1 class="m-404-title">404</h1>
2019-08-15 14:40:46 +00:00
<p class="m-404-subtitle">{{t "Page not found"}}</p>
2019-02-23 12:30:29 +00:00
<p class="m-404-text">
2019-08-15 14:40:46 +00:00
{{t "Unfortunately the page you were looking for could not be found."}}
2019-02-23 12:30:29 +00:00
</p>
2019-08-15 14:40:46 +00:00
<a href="{{@site.url}}" class="m-button outlined">{{t "Go to the home page"}}</a>
2019-02-23 12:30:29 +00:00
</section>
</main>