forked from ggc-itec/ggc-itec.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (71 loc) · 2.6 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
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="http://getbootstrap.com/dist/js/bootstrap.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.pack.js"></script>
<script>
<!-- load html into tabs -->
$(function() {
$("#projects").load("projects.html");
$("#members").load("members.html");
$("#alumni").load("alumni.html");
$("#pictures").load("pictures.html");
});
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.css" type="text/css" media="screen" />
<link type="text/css" rel="stylesheet" href="http://getbootstrap.com/dist/css/bootstrap.css"/>
<link type="text/css" rel="stylesheet" href="styles/main.css"/>
<link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
<title>
ggc-itec org website
</title>
</head>
<body>
<div class="container">
<div class="tabbable">
<ul class="nav nav-tabs">
<li><a href="#projects" data-toggle="tab">Projects</a></li>
<li><a href="#members" data-toggle="tab">Members</a></li>
<li><a href="#alumni" data-toggle="tab">Alumni</a></li>
<li><a href="#pictures" data-toggle="tab">Pictures</a></li>
<li class="active pull-right"><a href="#ggc-itec" data-toggle="tab">ggc-itec</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="ggc-itec">
<p class="lead">Software Development at Georgia Gwinnett College</p>
</div>
<div class="tab-pane" id="projects">
</div>
<div class="tab-pane" id="members">
</div>
<div class="tab-pane" id="alumni">
</div>
<div class="tab-pane" id="pictures">
</div>
</div>
</div> <!-- tabbable -->
</div> <!-- container -->
<!-- use fancyBox to show external links in iframe -->
<script>
$(document).ready(function() {
$(".display-iframe").fancybox({
type:"iframe",
maxWidth:800,
maxHeight:600,
fitToView:false,
width:'75%',
height:'75%',
autoSize:false,
closeClick:false,
openEffect:'none',
closeEffect:'none'
});
$(".display-picture").fancybox({
openEffect:'none',
closeEffect:'none',
maxWidth:900
});
});
</script>
</body>
</html>