-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (52 loc) · 2.09 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
<html>
<head>
<title>HackNTU</title>
<link rel="manifest" href="/manifest.json">
<meta property="og:title" content="HackNTU" />
<link rel="stylesheet" type="text/css" href="stylesheets/index.css">
</head>
<body>
<div id="console">
<div id="greeting-1" style="display: None;">
<p>Hi, I'm River Callahan, the welcoming robot of HackNTU. </p>
</div>
<div id="greeting-2" style="display: None;">
<p>I love to read, listen to music, travel, surf, and ofcourse, coding with love. </p>
<p>If you would like to get in touch with me, whether it be for supporting my hosts, cooperation, or to just say hi, feel free to send me an <a href="mailto:[email protected]">email</a> or <a href="https://www.facebook.com/hackNTU/">a message</a>.</p>
</div>
<span id="greeting-typed-1"></span>
<br/>
<span id="greeting-typed-2"></span>
<br/>
<br/>
<div id="prompts"></div>
</div>
<script src="https://www.gstatic.com/firebasejs/3.6.8/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyClEkIipGpcwQVvKD-qfhjdBdQXGI5wkjc",
authDomain: "hackntu-major.firebaseapp.com",
databaseURL: "https://hackntu-major.firebaseio.com",
storageBucket: "hackntu-major.appspot.com",
messagingSenderId: "922847429839"
};
firebase.initializeApp(config);
</script>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="javascripts/typed.min.js"></script>
<script src="javascripts/header.js"></script>
<!-- <script src="javascripts/terminal.js"></script> -->
<script src="javascripts/terminal_vue.js"></script>
<script>
setTimeout(function() {
if (confirm('是否前往【2017 臺大黑客松活動】官網?')) {
window.location.href = 'http://major.hackntu.taipei'
} else {
console.log('stay here')
}
}, 1000)
</script>
</body>
</html>