-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (59 loc) · 2.78 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
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="IE=edge" http-equiv="X-UA-Compatible"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<link href="dist/images/logo.ico" rel="shortcut icon" type="image/ico"/>
<title>
Virtual Tour - UNESA
</title>
<meta name="description" content="Virtual Tour Fakultas Teknik Universitas Negeri Surabaya, nikmati pengalaman melihat fakultas teknik UNESA seperti tampilan Google Street View."/>
<meta name="keywords" content="fakultas teknik unesa, virtual tour unesa, google street view, state university of surabaya, campus virtual tour, ft unesa, unesa engineering faculty, unesa virtual touring"/>
<!-- Bootstrap -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet"/>
<!-- Fontawesome -->
<link href="dist/css/font-awesome.min.css" rel="stylesheet"/>
<!-- Animate.css animation -->
<link href="dist/css/animate.min.css" rel="stylesheet"/>
<!-- Wave animation -->
<link href="dist/css/waves.min.css" rel="stylesheet"/>
<!-- Custom css -->
<link href="dist/css/style.css" rel="stylesheet"/>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Wave Animation -->
<script src="dist/js/waves.min.js" type="text/javascript"></script>
</head>
<body>
<div id="root"></div>
<!-- Load React. -->
<!-- Note: when deploying, replace "development.js" with "production.min.js". -->
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
<script src="https://unpkg.com/react-router-dom/umd/react-router-dom.min.js" crossorigin></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js" crossorigin></script>
<!-- Load our React component. -->
<script type="text/babel" src="index.js"></script>
<script>
/**
* Redirecting 404 github pages
* https://github.com/csuwildcat/sghpa
*/
(function(){
var redirect = sessionStorage.redirect;
delete sessionStorage.redirect;
if (redirect && redirect != location.href) {
history.replaceState(null, null, redirect);
// REMOVE THIS - just showing the redirect route in the Console
console.log('This page was redirected by 404.html, from the route: ', redirect);
}
else {
// REMOVE THIS - just showing the redirect route in the Console
console.log('This page was loaded directly from the index.html file');
}
})();
</script>
</body>
</html>