-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
53 lines (49 loc) · 2.08 KB
/
main.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
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="../bootstrap-3.3.5-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="../bootstrap-3.3.5-dist/css/bootstrap-theme.min.css">
<link href="css/photoDisplayer.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="../bootstrap-3.3.5-dist/js/bootstrap.min.js"></script>
<script src="js/photoDisplayer.js"></script>
<head>
<meta charset="utf-8" />
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<title>WebAfficheur!</title>
</head>
<body style="text-align:center">
<div id="wrapper" class="active">
<!-- Sidebar -->
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav" id="sidebar">
<li><a onclick="Like()"><span class="sub_icon glyphicon glyphicon glyphicon-thumbs-up"></span></a></li>
<li><a onclick="Dislike()"><span class="sub_icon glyphicon glyphicon glyphicon-thumbs-down"></span></a></li>
</ul>
<ul class="sidebar-nav sidebar-mid" id="sidebar">
<li><a onclick="Next()"><span class="sub_icon glyphicon glyphicon glyphicon glyphicon-forward"></span></a></li>
<li><a onclick="Previous()"><span class="sub_icon glyphicon glyphicon glyphicon glyphicon-backward"></span></a></li>
</ul>
<ul class="sidebar-nav sidebar-bottom" id="sidebar">
<li><a onclick="Ban()"><span class="sub_icon glyphicon glyphicon glyphicon-ban-circle"></span></a></li>
</ul>
</div>
<!-- Page content -->
<div id="page-content-wrapper">
<!-- Keep all page content within the page-content inset! -->
<div class="page-content inset">
<div class="row">
<div class="col-md-12 sen-class">
<img src="cgi-bin/image.py?idcurrent=0" id="image" style="image-orientation: from-image; height:auto; width:auto; max-height:100%; text-align:center"
/>
</div>
</div>
</div>
</div>
</div>
</body>
</html>