-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
49 lines (45 loc) · 1.71 KB
/
index.php
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
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>My Gallery</title>
<link rel="stylesheet" href="css/basic.css" type="text/css" />
<link rel="stylesheet" href="css/galleriffic-3.css" type="text/css" />
<link rel="stylesheet" href="css/easyslider.css" type="text/css" />
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript" src="js/jquery.history.js"></script>
<script type="text/javascript" src="js/jquery.galleriffic.js"></script>
<script type="text/javascript" src="js/jquery.opacityrollover.js"></script>
<script type="text/javascript" src="js/easySlider1.7.js"></script>
<!-- We only want the thunbnails to display when javascript is disabled -->
<script type="text/javascript">
document.write('<style>.noscript { display: none; }</style>');
</script>
</head>
<body>
<div id="header">
<h1>Easiest Image Gallery</h1>
<h2>überhaupt</h2>
<div id="navigation">
<ul>
</ul>
</div>
</div>
<div id="slider">
<ul class="slides">
<?php
$response_type = 'php'; //Ausgabe auf php umstellen for Pixlie
include('php/pixlie.php');
require("php/gallery.php");
foreach( $pixlie_table_dir as $dir) {
echo "<li class='slide'>";
printGallerySource($dir[name]);
echo "</li>";
}
?>
</ul>
</div>
<?php
printScriptForSlider();
?>
</body>
</html>