forked from MPC-Lab-X/MPC-Lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (49 loc) · 2.08 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/ico" href="./favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Learning/education community for Mathematics, Physics and Chemistry. Assign tasks, generate exams, and homework. Various professional calculation tools.">
<meta name="keywords" content="Question generator, Math, Physics, Chemistry, MPC Lab, MathPhysChemLab">
<meta name="author" content="MPC Lab">
<link rel="stylesheet" href="/static/css/loading_motion.css">
<link rel="stylesheet" href="/static/css/styles.css">
<link rel="stylesheet" media="(min-width: 1000px)" href="/static/css/desktop.css">
<link rel="stylesheet" media="(min-width: 616px) and (max-width: 999px)" href="/static/css/tablet.css">
<link rel="stylesheet" media="(max-width: 615px)" href="/static/css/mobile.css">
<script type="text/javascript" src="/static/js/APP.js"></script>
<script type="text/javascript" src="/app/index.js"></script>
<script type="text/javascript" src="/static/js/loading_motion.js"></script>
<script type="text/javascript" src="/static/js/operate_DOM.js"></script>
<title>MathPhysChemLab</title>
</head>
<body>
<!-- Loading Animation -->
<div class="loader">
<div class="loading-animation"></div>
</div>
<!-- Top Navigation Bar -->
<header class="top-bar">
<div class="logo"><img src="./static/img/logo.svg" class="logo"></div>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/search/">Search</a></li>
</ul>
</nav>
</header>
<!-- Main Content -->
<main>
<div class="types" id="types">
</div>
<div id="container" class="container">
</div>
</main>
<!-- Mobile Bottom Navigation -->
<footer class="mobile-bar">
<div class="footer-button" onclick="window.location='/search/'">Search</div>
<div class="footer-home-button">Home</div>
</footer>
</body>
</html>