-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from bigbrozer/features/next
Workshop 2023-09-10
- Loading branch information
Showing
31 changed files
with
2,104 additions
and
7,639 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,6 @@ indent_style = tab | |
|
||
[*.{yaml,yml}] | ||
indent_size = 2 | ||
|
||
[*.hbs] | ||
indent_style = tab |
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
nodejs 18.17.1 |
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,11 +1,13 @@ | ||
{{! 404 Error page; this file renders a 4040.html page; the "create404page" flag must be defined and enabled in config.json file within the "renderer" section }} | ||
{{> head}} | ||
{{> navbar}} | ||
|
||
<main> | ||
<h1>{{ translate 'error.404' }}</h1> | ||
<p>{{ translate 'error.message' }}</p> | ||
<a href="{{@website.url}}"> | ||
{{ translate 'error.button' }} | ||
</a> | ||
<h1>{{ translate 'error.404' }}</h1> | ||
<p>{{ translate 'error.message' }}</p> | ||
<a href="{{@website.url}}"> | ||
{{ translate 'error.button' }} | ||
</a> | ||
</main> | ||
|
||
{{> footer}} |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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,44 +1,43 @@ | ||
{ | ||
"partials": { | ||
"partials": { | ||
"pagination": { | ||
"prev": "Previous", | ||
"next": "Next" | ||
}, | ||
|
||
"pagination": { | ||
"prev": "Previous", | ||
"next": "Next" | ||
}, | ||
"sidebar": { | ||
"selectedPosts": "Selected posts", | ||
"featuredPosts": "Featured posts", | ||
"authors": "Authors" | ||
} | ||
}, | ||
|
||
"sidebar": { | ||
"selectedPosts": "Selected posts", | ||
"featuredPosts": "Featured posts", | ||
"authors": "Authors" | ||
} | ||
}, | ||
"post": { | ||
"publishedBy": "Written by ", | ||
"publishedDate": "on ", | ||
"mainTag": "Posted in ", | ||
"lastUpdatedDate": "Last updated on ", | ||
"previousPost": "Previous", | ||
"nextPost": "Next", | ||
"relatedPosts": "Author: " | ||
}, | ||
|
||
"post": { | ||
"publishedBy": "Written by ", | ||
"publishedDate": "on ", | ||
"mainTag": "Posted in ", | ||
"lastUpdatedDate": "Last updated on ", | ||
"previousPost": "Previous", | ||
"nextPost": "Next", | ||
"relatedPosts": "Author: " | ||
}, | ||
"tags": { | ||
"tagsPageTitle": "Tags", | ||
"description": "Collection of all tags", | ||
"post": { | ||
"1": "Post", | ||
"default": "Posts" | ||
} | ||
}, | ||
|
||
"tags": { | ||
"tagsPageTitle": "Tags", | ||
"description": "Collection of all tags", | ||
"post": { | ||
"1": "Post", | ||
"default": "Posts" | ||
} | ||
}, | ||
"author": { | ||
"visitWebsite": "Visit website" | ||
}, | ||
|
||
"author": { | ||
"visitWebsite": "Visit website" | ||
}, | ||
|
||
"error": { | ||
"404": "Error 404", | ||
"message": "The page you were looking for appears to have been moved, deleted or does not exist. You could go back to where you were or head straight to our home page.", | ||
"button": "Go Home" | ||
} | ||
"error": { | ||
"404": "Error 404", | ||
"message": "The page you were looking for appears to have been moved, deleted or does not exist. You could go back to where you were or head straight to our home page.", | ||
"button": "Go Home" | ||
} | ||
} |
Oops, something went wrong.