-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
94 lines (85 loc) · 4.71 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Machine Learning Lab @ Postech</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css" integrity="sha384-PmY9l28YgO4JwMKbTvgaS7XNZJ30MK9FAZjjzXtlqyZCqBY6X6bXIkM++IkyinN+" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="static/mlpostech.css">
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Saira+Extra+Condensed:500,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Muli:400,400i,800,800i" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js" integrity="sha384-vhJnz1OVIdLktyixHY4Uk3OHEwdQqPppqYR8+5mjsauETgLOcEynD9oPHhhz18Nw" crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar navbar-home navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<a class="navbar-brand" href="/">
<img id="logo" src="img/logo_0.png" height="30px" class="pull-left" style="margin-top: -5px;"/>
<span style="padding-left:30px; color:#333"> ML Lab @ Postech </span>
</a>
<ul class="nav nav-tabs-home nav-tabs pull-right">
<li class="active"><a href="#home" data-toggle="tab">Home</a></li>
<li><a href="#people" data-toggle="tab">People</a></li>
<li><a href="#publication" data-toggle="tab">Publications</a></li>
<li><a href="#contact" data-toggle="tab">Contact</a></li>
<li><a href="#research_participate" data-toggle="tab">연구참여</a></li>
</ul>
</div>
</nav>
<div class="tab-content" id="nav-tabContent">
<div id="home" class="tab-pane fade in active"></div>
<div id="people" class="tab-pane fade"></div>
<div id="publication" class="tab-pane fade"></div>
<div id="contact" class="tab-pane fade"></div>
<div id="research_participate" class="tab-pane fade"></div>
</div>
</body>
<footer>
<div class="pull-right" style="padding: 0 30px;">
<small><i class="far fa-copyright"></i> Icons made by <a href="https://www.flaticon.com/authors/those-icons" title="Those Icons">Those Icons</a>, <a href="https://www.flaticon.com/authors/smashicons" title="Smashicons">Smashicons</a>, <a href="https://www.flaticon.com/authors/surang" title="surang">surang</a>, <a href="https://www.flaticon.com/authors/eucalyp" title="Eucalyp">Eucalyp</a>, <a href="https://www.flaticon.com/free-icons/thought" title="thought icons">Smashicons</a> <a href="https://www.flaticon.com/free-icons/security" title="security icons">srip</a> from <a href="https://www.flaticon.com/" stitle="Flaticon">www.flaticon.com</a>
</small></div>
</footer>
</html>
<script>
$(function(){
$("#home").load("home.html");
$("#people").load("people.html");
$("#publication").load("pub.html");
$("#contact").load("contact.html");
$("#research_participate").load("research_participate.html");
var hash = window.location.hash;
hash && $('ul.nav a[href="' + hash + '"]').tab('show');
$('.nav-tabs a').click(function (e) {
$(this).tab('show');
var scrollmem = $('body').scrollTop() || $('html').scrollTop();
window.location.hash = this.hash;
$('html,body').scrollTop(scrollmem);
});
});
$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
var target = $(e.target).attr("href") // activated tab
if (target == "#home") {
$(".navbar").addClass("navbar-home");
$(".nav").addClass("nav-tabs-home");
} else {
$(".navbar").removeClass("navbar-home");
$(".nav").removeClass("nav-tabs-home")
}
logos = ["#home", "#people", "#publication", "#contact", "#research_participate"];
$("#logo")[0].src = "img/logo_"+logos.indexOf(target)+".png"
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-92946797-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-92946797-2');
</script>