liebling/error-404.hbs

22 lines
719 B
Handlebars
Raw Permalink 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.
--}}
{{!-- 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-04-14 18:41:25 +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>