-
Notifications
You must be signed in to change notification settings - Fork 8
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 #113 from edrlab/contents
404 at root
- Loading branch information
Showing
3 changed files
with
25 additions
and
18 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!doctype html> | ||
<html lang=en> | ||
<head> | ||
<meta charset=utf-8> | ||
<title>404 Not Found - Thorium Reader</title> | ||
</head> | ||
<body> | ||
|
||
<h1>404 Not Found</h1> | ||
<p>The page you requested cannot be found.</p> | ||
<p> | ||
<a href="https://thorium.edrlab.org/"> | ||
Return to the home page | ||
</a> | ||
</p> | ||
</body> |
This file was deleted.
Oops, something went wrong.
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,10 +1,9 @@ | ||
{{ define "main"}} | ||
<main id="main"> | ||
<div> | ||
<h1 id="title">Not found</h1> | ||
<p>Oops! This page doesn't exist. Try going back to our <a href="{{ "/" | relURL }}">home page</a>.</p> | ||
|
||
<p>You can learn how to make a 404 page like this in <a href="https://gohugo.io/templates/404/">Custom 404 Pages</a>.</p> | ||
</div> | ||
</main> | ||
{{ end }} | ||
{{ define "main" }} | ||
<h1>404 Not Found</h1> | ||
<p>The page you requested cannot be found.</p> | ||
<p> | ||
<a href="{{ .Site.Home.RelPermalink }}"> | ||
Return to the home page | ||
</a> | ||
</p> | ||
{{ end }} |