This repository has been archived by the owner on Nov 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.html
51 lines (50 loc) · 2.22 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>A'ingae Language Documentation</title>
<!-- <script src="https://unpkg.com/[email protected]/dist/react.js"></script> -->
<!-- <script src="https://unpkg.com/[email protected]/dist/react-dom.js"></script> -->
<script src="https://unpkg.com/react@15/dist/react.min.js"></script>
<script src="https://unpkg.com/react-dom@15/dist/react-dom.min.js"></script>
<script src="https://unpkg.com/[email protected]/babel.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/jquery.min.js"></script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.3/require.min.js"></script> -->
<!-- <script src="CDNs/react.js"></script> -->
<!-- <script src="CDNs/react-dom.js"></script> -->
<!-- <script src="CDNs/babel.js"></script> -->
<!-- <script src="CDNs/jquery.js"></script> -->
<link rel="stylesheet" href="css/main.css?version=0.2.4">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<!-- <script type="text/jsx" src="jsx/index.jsx"></script> -->
<script src="js/bundle.js"></script>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,600,700">
<link rel="icon" href="images/favicon.ico">
<script src="https://cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.15/css/jquery.dataTables.min.css">
</head>
<body>
<div id="navbar">
<div id="navTitle">
A'ingae Language Documentation
</div>
<ul id="navLinks">
<!-- <li><a href="#/index/">Índice de cuentos<!--Story Index</a></li> -->
<li><a href="#/about/">About</a></li>
<li><a href="#/index/">Texts</a></li>
<li><a href="#/resources/">Resources</a></li>
<li><a href="#/contact/">Contact Us</a></li>
</ul>
</div>
<div id="main">
<!-- <div id="leftPanel"></div> -->
<!-- <div id="centerPanel"></div> -->
</div>
<!-- <div id="footer"></div> -->
<script>
if (window.location.hash == "" || window.location.hash == "/") {
window.location.hash = "#/index/"
}
</script>
</body>
</html>