-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
86 additions
and
0 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,86 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta name="description" content="Something went wrong" /> | ||
<title>Something went wrong</title> | ||
<link rel="shortcut icon" href="/favicon.ico" /> | ||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" /> | ||
<!-- Bootstrap core CSS --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous"> | ||
<!-- Outfit font from Google Fonts --> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Outfit"> | ||
<style> | ||
/* Error Page Inline Styles */ | ||
body { | ||
padding-top: 20px; | ||
} | ||
/* Layout */ | ||
.jumbotron { | ||
font-size: 21px; | ||
font-weight: 200; | ||
line-height: 2.1428571435; | ||
color: inherit; | ||
padding: 10px 0px; | ||
text-align: center; | ||
background-color: transparent; | ||
} | ||
/* Everything but the jumbotron gets side spacing for mobile-first views */ | ||
.body-content { | ||
padding-left: 15px; | ||
padding-right: 15px; | ||
} | ||
/* Bottom links */ | ||
.bottom-links { | ||
display: flex; | ||
justify-content: space-between; | ||
margin:-30px auto; | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
max-width: 100%; | ||
text-align: center; | ||
width: 600px; | ||
} | ||
/* button */ | ||
.jumbotron .btn { | ||
font-size: 21px; | ||
padding: 14px 24px; | ||
} | ||
/* Fade-in */ | ||
@keyframes fadein { | ||
from { opacity: 0; } | ||
to { opacity: 1; } | ||
} | ||
/* Dark mode */ | ||
@media (prefers-color-scheme: dark) { | ||
body { | ||
background-color: #282828; | ||
color: white; | ||
} | ||
} | ||
/* Font */ | ||
body { | ||
font-family: 'Outfit', sans-serif; | ||
} | ||
</style> | ||
</head> | ||
<div class="container" style="padding: 70px 0; text-align: center;"> | ||
<!-- Jumbotron --> | ||
<div class="jumbotron"> | ||
<a href="https://wikiforge.net"> | ||
<img src="https://static.wikiforge.net/metawiki/8/88/WikiForge_Logo.svg" width="130" height="130" alt="WikiForge" /> | ||
</a> | ||
<h1><b>Something went wrong</b></h1> | ||
<p class="lead">If this keeps happening, <a href="https://static-help.wikiforge.net/docs/errors/500">let us know</a>.</p> | ||
<a href="javascript:document.location.reload(true);" class="btn btn-outline-primary" role="button">Try this action again</a> | ||
</div> | ||
<div class="footer" style="position: fixed; left:0px; bottom: 125px; height:30px; width:100%;"> | ||
<div class="text-center"> | ||
<p class="lead">When reporting this, please include the information below:</p> | ||
::CLOUDFLARE_ERROR_500S_BOX:: | ||
<br /><br /> | ||
</div> | ||
</div> | ||
</div> | ||
</html> |