-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Making big changes to adapt the platform to Flask. New images, new files structure, new app routes, adding CSP (Content Security Policy) and other new features and bug resolutions...
- Loading branch information
Showing
44 changed files
with
119 additions
and
185 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
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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,60 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
|
||
<!--- Content Security Policy (CSP)--> | ||
<meta http-equiv="Content-Security-Policy" content="default-src 'self'"> | ||
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> | ||
<meta http-equiv="Content-Security-Policy" content="block-all-mixed-content"> | ||
<meta http-equiv="Content-Security-Policy" content="img-src 'self' github.com/Isaaker/Ghost_Simulator_ES"> | ||
|
||
|
||
<!--- Responsive Platform ---> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"&gt> | ||
|
||
<meta charset="utf-8"> | ||
<!--- Favicon ---> | ||
<link rel="apple-touch-icon" sizes="180x180" href="{{url_for('static', filename='images/apple-touch-icon.png')}}"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="{{url_for('static', filename='images/favicon-32x32.png')}}"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="{{url_for('static', filename='images/favicon-16x16.png')}}"> | ||
<link rel="manifest" href="{{url_for('static', filename='images/site.webmanifest')}}"> | ||
<meta name="msapplication-TileColor" content="#fade95"> | ||
<meta name="theme-color" content="#fade95"> | ||
|
||
<!-- Redirect to simulator home--> | ||
<meta http-equiv="refresh" content="3;URL='./home.html'" /> | ||
|
||
<!--- CSS Style ---> | ||
<link rel="stylesheet" type="text/css" href="/static/css/login.css"> | ||
|
||
|
||
<title>Ghost Simulator - Cargando...</title> | ||
</head> | ||
|
||
<body> | ||
<div class="hamster-container"> | ||
<div aria-label="Orange and tan hamster running in a metal wheel" role="img" class="wheel-and-hamster"> | ||
<div class="wheel"></div> | ||
<div class="hamster"> | ||
<div class="hamster__body"> | ||
<div class="hamster__head"> | ||
<div class="hamster__ear"></div> | ||
<div class="hamster__eye"></div> | ||
<div class="hamster__nose"></div> | ||
</div> | ||
<div class="hamster__limb hamster__limb--fr"></div> | ||
<div class="hamster__limb hamster__limb--fl"></div> | ||
<div class="hamster__limb hamster__limb--br"></div> | ||
<div class="hamster__limb hamster__limb--bl"></div> | ||
<div class="hamster__tail"></div> | ||
</div> | ||
</div> | ||
<div class="spoke"></div> | ||
</div> | ||
<h1 class="loading-text">Cargando...</h1> | ||
</div> | ||
<div class="version"> | ||
<h3>Version 3.0-beta</h3> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.