2021-03-03 20:22:45 -05:00
|
|
|
{{!< default}}
|
|
|
|
|
2017-08-10 09:34:23 -04:00
|
|
|
{{!--
|
2021-03-03 08:11:16 -05:00
|
|
|
|
|
|
|
There are two error files in this theme, one for 404s and one for all other errors.
|
|
|
|
This file is the former, and handles all 404 Page Not Found errors.
|
|
|
|
|
|
|
|
The 404 error is the most common error that a visitor might see, for example when
|
|
|
|
following a broken link
|
|
|
|
|
|
|
|
Keep this template as lightweight as you can!
|
|
|
|
|
2017-08-10 09:34:23 -04:00
|
|
|
--}}
|
|
|
|
|
2021-03-03 20:22:45 -05:00
|
|
|
<section class="outer error-content">
|
2019-10-28 11:28:25 -04:00
|
|
|
<div class="inner">
|
|
|
|
<section class="error-message">
|
|
|
|
<h1 class="error-code">{{statusCode}}</h1>
|
|
|
|
<p class="error-description">{{message}}</p>
|
|
|
|
<a class="error-link" href="{{@site.url}}">Go to the front page →</a>
|
|
|
|
</section>
|
2017-08-10 09:34:23 -04:00
|
|
|
|
2019-10-28 11:28:25 -04:00
|
|
|
{{#get "posts" limit="3" include="authors,tags"}}
|
|
|
|
<div class="post-feed">
|
|
|
|
{{#foreach posts}}
|
|
|
|
{{> "post-card"}}
|
|
|
|
{{/foreach}}
|
2017-08-10 09:34:23 -04:00
|
|
|
</div>
|
|
|
|
{{/get}}
|
|
|
|
</div>
|
2021-03-03 20:22:45 -05:00
|
|
|
</section>
|