-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New design for the default 404 page #11468
Merged
+91
−10
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,84 @@ | ||
@using Microsoft.Extensions.Options | ||
@using Umbraco.Cms.Core.Configuration.Models | ||
@using Umbraco.Cms.Core.Hosting | ||
@using Umbraco.Cms.Core.Routing | ||
@using Umbraco.Extensions | ||
@inject IHostingEnvironment hostingEnvironment | ||
@inject IOptions<GlobalSettings> globalSettings | ||
@{ | ||
var backOfficePath = globalSettings.Value.GetBackOfficePath(hostingEnvironment); | ||
} | ||
<!doctype html> | ||
<html class="no-js" lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | ||
|
||
<title>Page Not Found</title> | ||
|
||
<link rel="stylesheet" href="@WebPath.Combine(backOfficePath.TrimStart("~"), "/assets/css/nonodes.style.min.css")" /> | ||
<style type="text/css"> | ||
body { | ||
color:initial; | ||
} | ||
|
||
section { | ||
background: none; | ||
} | ||
|
||
section a, section a:focus, section a:visited { | ||
color:initial; | ||
border-color:currentColor; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<section> | ||
<article> | ||
<div> | ||
<h1>Page Not Found</h1> | ||
@if (hostingEnvironment.IsDebugMode) | ||
{ | ||
|
||
var reason = (string)Context.Items["reason"]; | ||
var message = (string)Context.Items["message"]; | ||
|
||
if (!reason.IsNullOrWhiteSpace()) | ||
{ | ||
<h3>@reason</h3> | ||
} | ||
if (!message.IsNullOrWhiteSpace()) | ||
{ | ||
<p>@message</p> | ||
} | ||
|
||
<div class="cta"></div> | ||
|
||
<div class="row"> | ||
<div class="col"> | ||
<h2>This page can be replaced</h2> | ||
<p> | ||
Custom error handling might make your site look more on-brand and minimize the impact of errors on user experience - for example, a custom 404 with some helpful links (or a search function) could bring some value to the site. | ||
</p> | ||
|
||
<a href="https://umbra.co/custom-error-pages" target="_blank" rel="noopener">Implementing custom error pages →</a> | ||
</div> | ||
|
||
<div class="col"> | ||
<h2>Be a part of the community</h2> | ||
<p>The Umbraco community is the best of its kind, be sure to visit, and if you have any questions, we're sure that you can get your answers from the community.</p> | ||
|
||
<a href="https://our.umbraco.com/" target="_blank" rel="noopener">our.Umbraco →</a> | ||
</div> | ||
</div> | ||
|
||
} | ||
</div> | ||
</article> | ||
|
||
</section> | ||
|
||
</body> | ||
</html> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
no-js
should probably not be applied unless you have some javascript to remove the script.Alternatively add something like this:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should probably be removed from https://github.com/umbraco/Umbraco-CMS/blob/v9/contrib/src/Umbraco.Web.UI/umbraco/UmbracoWebsite/NoNodes.cshtml too :)