This repository has been archived by the owner on Jun 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Shane Robinson
committed
Jan 10, 2021
1 parent
f065c79
commit ebe092e
Showing
3 changed files
with
36 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,18 @@ | ||
--- | ||
title: 404 | ||
layout: page | ||
permalink: 404.html | ||
eleventyExcludeFromCollections: true | ||
seo: | ||
title: Oooooops... | ||
pagination: # pagination settings so we can control how many posts are returned below | ||
data: collections.post | ||
size: 10 | ||
reverse: true | ||
alias: posts | ||
title: 'Oooooops...' | ||
--- | ||
|
||
The page you're looking for doesn't currently exist on this website. Perhaps you followed an old or bad link? | ||
|
||
Here are 10 recent posts. Perhaps one of these will help you along your way? | ||
|
||
<ol class="pt-4"> | ||
{%- for post in posts -%} | ||
{%- for post in collections.post | limit(10) -%} | ||
<li><a class="underline" href="{{ post.url }}">{{ post.data.title }}</a></li> | ||
{%- endfor -%} | ||
</ol> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters