Skip to content
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
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 44 additions & 31 deletions themes/reactos/layouts/404.html
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>
Copy link
Collaborator

@JoachimHenze JoachimHenze May 3, 2024

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.


<p>Technical information:</p>

<p>*** STOP: 0x00000404 (0xcff1e274, 0x0000ba21, 0xbc28402a, 0x00000050)</p>


<p>
<br />***&nbsp;&nbsp;&nbsp;{{ .Permalink | absURL }} -
Address <a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a>, DateStamp 4fbcfbe3
</p>
</body>
</html>