Updated for Ghost 5
[ghost-theme-lbbg.git] / error-404.hbs
1 {{!< default}}
2
3 {{!--
4
5 There are two error files in this theme, one for 404s and one for all other errors.
6 This file is the former, and handles all 404 Page Not Found errors.
7
8 The 404 error is the most common error that a visitor might see, for example when
9 following a broken link
10
11 Keep this template as lightweight as you can!
12
13 --}}
14
15 <section class="outer error-content">
16 <div class="inner">
17 <section class="error-message">
18 <h1 class="error-code">{{statusCode}}</h1>
19 <p class="error-description">{{message}}</p>
20 <a class="error-link" href="{{@site.url}}">Go to the front page →</a>
21 </section>
22 </div>
23 </section>
24
25 {{!-- Given that people landing on this page didn't find what they
26 were looking for, let's give them some alternative stuff to read. --}}
27 <aside class="read-more-wrap">
28 <div class="read-more inner">
29 {{#get "posts" include="authors" limit="3" as |more_posts|}}
30 {{#if more_posts}}
31 {{#foreach more_posts}}
32 {{> "post-card"}}
33 {{/foreach}}
34 {{/if}}
35 {{/get}}
36 </div>
37 </aside>