-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.86 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vitrine</title>
<link rel="shortcut icon" href="static/favicon.ico" />
<link rel="stylesheet" href="static/style.css" />
<link rel="stylesheet" href="static/local.css" />
<link rel="pythonpath" href="Hamburglar/" />
<link rel="pythonpath" href="BurgerVitrine/" />
<script type="text/javascript" src="brython/www/src/brython.js"></script>
<script type="text/javascript" src="brython/www/src/brython_stdlib.js"></script>
<script type="text/python" src="main.py"></script>
</head>
<body onload="brython(1)">
<div id="header">
<a href="/"><h1>Burger Vitrine</h1></a>
<div class="topmenu">
<div class="select" id="version-main">
<select disabled>
<option value="None" selected>None</option>
</select>
<span>Loading</span>
</div>
<div class="select" id="version-diff">
<select disabled>
<option value="None" selected>None</option>
</select>
<span>None</span>
</div>
</div>
</div>
<div id="vitrine">
<h2>Loading...</h2>
<div class="entry">Burger Vitrine uses <a href="https://brython.info/">Brython</a>, and requires support for <a href="https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API/Using_IndexedDB">IndexedDB</a> and <a href="https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API/Using_IndexedDB">Web Workers</a>. Note that these may not work correctly when using Private Browsing mode / Incognito mode. Please check the browser console if it fails to load.</div>
<noscript>
<div class="entry">Burger Vitrine requires JavaScript to be enabled.</div>
</noscript>
</div>
<footer>
<a href="https://github.com/pokechu22/Burger">GitHub</a>
</footer>
</body>
</html>