-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
133 lines (103 loc) · 3.93 KB
/
gallery.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="images/favicon.ico">
<meta name="description" content="Personal Website of Aditya Sreekumar" />
<meta name="revised" content="Aditya Sreekumar, 09/17/12" />
<title> Aditya Sreekumar </title>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-37159231-1']);
_gaq.push(['_setDomainName', 'adityasreekumar.com']);
_gaq.push(['_trackPageview']);
(function () {
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
<!--<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script> -->
<script src="jquery.js"></script>
<script src="gallery_jquery.js"></script>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" type="text/css" href="./css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="./css/aditya_bootstrap.css">
</head>
<body>
<div id="main_div">
<header>
<table class="header">
<tr>
<td id="page_header_name">
<p>
Aditya Sreekumar
</p>
</td>
</tr>
</table>
</header>
<!-- Static navbar -->
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"
aria-expanded="false" aria-controls="navbar">
<!--- Display icon for the mobile site to show options -->
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="publications.html">Publications</a></li>
<li class="active"><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
<!--/.container-fluid -->
</nav>
<div id="content_gallery">
<table width="100%" height="99%">
<tr width="100%" height="90%">
<td id="move_picture_left" width="5%"><img src="images/arrow_left.jpg" alt="Prev" width="100%" /></td>
<td id="picture_main">
<table width="100%" height="100%">
<tr width="100%" height="90%">
<td id="picture_view" align="center">
</td>
</tr>
<tr>
<td id="picture_caption" align="center">
</td>
</tr>
</table>
</td>
<td id="move_picture_right" width="5%"><img src="images/arrow_right.jpg" alt="Next" width="100%" />
</td>
</tr>
<tr width="100%" height="5%">
<td></td>
</tr>
</table>
</div>
<div id="content_gallery_list">
<table border='0' id="gallery_list" align="center">
</table>
</div>
<footer>
<p class="footer_content">
</p>
</footer>
</div>
</div>
</body>
</html>