-
Notifications
You must be signed in to change notification settings - Fork 4
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 #35 from OpenRailAssociation/404-page
Add custom 404 page
- Loading branch information
Showing
2 changed files
with
26 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
|
||
{{ partial "head" . }} | ||
|
||
<body class="is-preload"> | ||
|
||
<!-- Wrapper --> | ||
<div id="wrapper" class="divided"> | ||
{{ partial "nav" site.Data.nav }} | ||
<section class="wrapper style1 align-left"> | ||
<div class="inner medium"> | ||
<h2>Page Not Found</h2> | ||
<p>The page you requested cannot be found. This should not have happened.</p> | ||
<p>Please feel free to contact us about broken links.</p> | ||
</div> | ||
</section> | ||
{{ partial "footer" site.Data.footer }} | ||
</div> | ||
|
||
{{ partial "scripts" . }} | ||
|
||
</body> | ||
|
||
</html> |