-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jakub Klímek <jakub@jakubklimek.com>
- Loading branch information
1 parent
b159590
commit f529349
Showing
1 changed file
with
42 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,42 @@ | ||
<!DOCTYPE html> | ||
<html lang="cs"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="theme-color" content="#057fa5"> | ||
<meta name="msapplication-TileColor" content="#057fa5"> | ||
<meta name="msapplication-TileImage" content="../../static/favicons/ms-icon-144x144.png"> | ||
<link rel="apple-touch-icon" sizes="57x57" href="../../static/favicons/apple-icon-57x57.png"> | ||
<link rel="apple-touch-icon" sizes="60x60" href="../../static/favicons/apple-icon-60x60.png"> | ||
<link rel="apple-touch-icon" sizes="72x72" href="../../static/favicons/apple-icon-72x72.png"> | ||
<link rel="apple-touch-icon" sizes="76x76" href="../../static/favicons/apple-icon-76x76.png"> | ||
<link rel="apple-touch-icon" sizes="114x114" href="../../static/favicons/apple-icon-114x114.png"> | ||
<link rel="apple-touch-icon" sizes="120x120" href="../../static/favicons/apple-icon-120x120.png"> | ||
<link rel="apple-touch-icon" sizes="144x144" href="../../static/favicons/apple-icon-144x144.png"> | ||
<link rel="apple-touch-icon" sizes="152x152" href="../../static/favicons/apple-icon-152x152.png"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="../../static/favicons/apple-icon-180x180.png"> | ||
<link rel="icon" type="image/png" sizes="192x192" href="../../static/favicons/android-icon-192x192.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="../../static/favicons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="96x96" href="../../static/favicons/favicon-96x96.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="../../static/favicons/favicon-16x16.png"> | ||
<link rel="manifest" href="../../static/favicons/manifest.json"> | ||
|
||
<title>Přesměrování</title> | ||
|
||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="../static/css/od.css"> | ||
|
||
|
||
<meta http-equiv="refresh" content="0; url=draft"> | ||
|
||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<h1>Přesměrování…</h1> | ||
<p><a href="draft">Pokud nejste přesměrováni, klikněte zde.</a></p> | ||
</div> | ||
<script type="application/javascript">location="draft"+window.location.hash</script> | ||
|
||
</body> | ||
</html> |