-
-
Notifications
You must be signed in to change notification settings - Fork 14
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
4 changed files
with
82 additions
and
1 deletion.
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
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,67 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" data-theme="dark"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>MystBin - Maintenance</title> | ||
|
||
<meta name="viewport" content="width=device-width,initial-scale=1" /> | ||
<meta name="description" content="Easily share code and text." /> | ||
|
||
<!-- PACKAGES --> | ||
<!-- SCRIPTS --> | ||
<script src="static/scripts/themes.js" defer></script> | ||
|
||
<!-- STYLESHEETS --> | ||
<link rel="preload" href="static/styles/global.css" as="style" /> | ||
<link rel="stylesheet" type="text/css" href="static/styles/global.css" /> | ||
|
||
|
||
<!-- FONTS --> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" | ||
rel="stylesheet"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" | ||
rel="stylesheet"> | ||
|
||
<link rel="icon" href="static/images/favicon.png" /> | ||
</head> | ||
|
||
<body> | ||
<div class="header"> | ||
<a class="headerSection" href="/"> | ||
<img src="/static/images/logo.svg" class="logo" /> | ||
MystBin | ||
</a> | ||
<div> | ||
<input id="themeSwitch" class="themeSwitch" type="checkbox" /> | ||
<label for="themeSwitch"></label> | ||
</div> | ||
</div> | ||
|
||
<form id="content" class="content"> | ||
<h2>We are currently undergoing maintenance, be back soon!</h2> | ||
</form> | ||
|
||
<div class="footer"> | ||
<div class="footerSection"> | ||
<img src="/static/images/logo.svg" class="logo" /> | ||
<span class="footerText"> | ||
MystBin - Copyright © 2020-current PythonistaGuild | ||
</span> | ||
</div> | ||
<div class="footerSection"> | ||
<a href="vscode:extension/PythonistaGuild.mystbin">Install on <img src="/static/images/vsc.svg" class="vsc" /></a> | ||
<a href="/api/documentation">Documentation</a> | ||
<a href="https://discord.gg/RAKc3HF">Discord</a> | ||
<a href="https://github.com/PythonistaGuild">GitHub</a> | ||
</div> | ||
</div> | ||
</body> | ||
|
||
</html> |