-
Notifications
You must be signed in to change notification settings - Fork 46
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
Return to good old 404 page #50
Open
Extravert-ir
wants to merge
1
commit into
reactos:master
Choose a base branch
from
Extravert-ir:good_old_404
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,46 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{ .Site.LanguageCode }}"> | ||
{{ partial "head.html" . }} | ||
|
||
<body> | ||
<header> | ||
{{ partial "nav.html" . }} | ||
</header> | ||
|
||
<div class="container-fluid"> | ||
<section id="content" class="row"> | ||
<div class="col-sm-6 col-sm-offset-3" id="error-page"> | ||
<div class="box"> | ||
<p class="text-center"> | ||
<a href="{{ .Site.BaseURL }}"> | ||
<img src="{{ .Site.Params.logo }}" alt="{{ .Title }} logo"> | ||
</a> | ||
</p> | ||
|
||
<h3>We are sorry - this page is not here anymore</h3> | ||
<h4 class="text-muted">Error 404 - Page not found</h4> | ||
|
||
<p class="buttons"><a href="{{ .Site.BaseURL }}" class="btn btn-template-main"><i class="fa fa-home"></i> Go to Homepage</a></p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
{{ partial "footer.html" . }} | ||
</div> | ||
|
||
{{ partial "scripts.html" . }} | ||
</body> | ||
<html lang="en-us"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>404 - PAGE_FAULT_IN_NONPAGED_AREA | ReactOS Project</title> | ||
{{ hugo.Generator }} | ||
<style> | ||
body | ||
{ | ||
background: #000099; | ||
color: white; | ||
font-family: "Lucida Console", "Courier New", monospace; | ||
font-size: 12pt | ||
} | ||
a, a:hover, a:active, a:focus | ||
{ | ||
color: white | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<p>A problem has been detected and RosCMS has been shut down to prevent damage to your computer.</p> | ||
|
||
<p>PAGE_FAULT_IN_NONPAGED_AREA</p> | ||
|
||
<p>If this is the first time you have seen this error screen,<br /> | ||
restart your browser. If this screen appears again, follow<br /> | ||
these steps:</p> | ||
|
||
<p>Make sure that the page you requested is spelled properly.<br /> | ||
If this is the case, press F5 for advanced reload options.</p> | ||
|
||
<p>If problems continue, drop an email to [email protected]</p> | ||
|
||
<p>Technical information:</p> | ||
|
||
<p>*** STOP: 0x00000404 (0xcff1e274, 0x0000ba21, 0xbc28402a, 0x00000050)</p> | ||
|
||
|
||
<p> | ||
<br />*** {{ .Permalink | absURL }} - | ||
Address <a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a>, DateStamp 4fbcfbe3 | ||
</p> | ||
</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.
I would strip that part with the "drop an email to". Maybe we should link to mattermost instead.