|
|
|
|
@@ -1,97 +1,97 @@
|
|
|
|
|
<?php
|
|
|
|
|
header("Content-Type: text/html; charset=utf-8");
|
|
|
|
|
header("Cache-Control: max-age=3600");
|
|
|
|
|
|
|
|
|
|
$wkName = "3. Porphyrpokal der Stadt Rochlitz";
|
|
|
|
|
|
|
|
|
|
$imgList = array( "P7120007.jpg","P7120008.jpg","P7120009.jpg","P7120010.jpg","P7120011.jpg","P7120012.jpg","P7120013.jpg","P7120014.jpg","P7120015.jpg","P7120016.jpg","P7120017.jpg","P7120018.jpg","P7120019.jpg","P7120020.jpg","P7120021.jpg","P7120022.jpg","P7120023.jpg","P7120024.jpg","P7120026.jpg","P7120028.jpg","P7120029.jpg" );
|
|
|
|
|
$imgSize = count( $imgList );
|
|
|
|
|
assert( $imgSize > 0, "Bilder leider nicht verfügbar!");
|
|
|
|
|
isset($_GET["index"]) ? $currIndex = intval( $_GET["index"] ) : 0;
|
|
|
|
|
if( $currIndex < 0 ) $currIndex = 0;
|
|
|
|
|
if( $currIndex >= $imgSize) $currIndex = $imgSize-1;
|
|
|
|
|
?>
|
|
|
|
|
<!DOCTYPE HTML>
|
|
|
|
|
<html lang="de">
|
|
|
|
|
<head>
|
|
|
|
|
<title><?php echo $wkName?></title>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
<!-- Leute mit aktiviertem JavaScript sollen die BlueImpGallery gezeigt bekommen -->
|
|
|
|
|
<?php
|
|
|
|
|
echo "window.location = \"index.php?index=".$currIndex."\"";
|
|
|
|
|
?>
|
|
|
|
|
</script>
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
|
<meta name="description" content="Die Judoka des Chemnitzer WSV beim Wettkampf <?php echo $wkName?>">
|
|
|
|
|
<meta name="keywords" content="Judo, Bilder, <?php echo $wkName?>, Photos, Album, Galerie, Wettkampf, CWSV, Chemnitz,">
|
|
|
|
|
<link rel="icon" href="/ressourcen/graphiken/icons/cwsv.ico">
|
|
|
|
|
<style type="text/css" media="screen">/*<![CDATA[*/ @import "table.css"; /*]]>*/</style>
|
|
|
|
|
|
|
|
|
|
<!-- BluimpGallery Zeug -->
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<link rel="stylesheet" href="/ressourcen/blueimpGallery/css/blueimp-gallery.css">
|
|
|
|
|
<link rel="stylesheet" href="/ressourcen/blueimpGallery/css/blueimp-gallery-indicator.css">
|
|
|
|
|
<link rel="stylesheet" href="/ressourcen/blueimpGallery/css/blueimp-gallery-video.css">
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
<!-- Body -->
|
|
|
|
|
<body style="color: #000000; background-color: #FFAE00">
|
|
|
|
|
<!-- Variante für die Leute ohne JavaScript (Anfang)-->
|
|
|
|
|
<noscript>
|
|
|
|
|
<table style="margin-left:auto;margin-right:auto;">
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<a href="index.php">
|
|
|
|
|
<img src="nav_topb.png" id="ntop" alt="Album" title="Album">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href="view.php?index=0">
|
|
|
|
|
<img src="nav_firstb.png" id="nfirst" alt="Zum Anfang" title="Zum Anfang">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex-10 >= 0 ? $currIndex - 10 : 0)."\"";?>>
|
|
|
|
|
<img src="nav_prev10b.png" id="nprev10" alt="10 Bilder zurück" title="10 Bilder zurück">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex-1 >= 0 ? $currIndex - 1 : 0)."\"";?>>
|
|
|
|
|
<img src="nav_prevb.png" id="nprev" alt="Bild zurück" title="Bild zurück">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex+1 < $imgSize ? $currIndex + 1 : $imgSize-1)."\"";?>>
|
|
|
|
|
<img src="nav_nextb.png" id="nnext" alt="Bild vor" title="Bild vor">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex+10 < $imgSize ? $currIndex + 10 : $imgSize-1)."\"";?>>
|
|
|
|
|
<img src="nav_next10b.png" id="nnext10" alt="10 Bilder vor" title="10 Bilder vor">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href=<?php echo "\"view.php?index=".( $imgSize-1 )."\""?>>
|
|
|
|
|
<img src="nav_lastb.png" id="nlast" alt="Zum Ende" title="Zum Ende">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<span id="image_name1"><?php echo $imgList[$currIndex]?></span>(<span id="image_num1"><?php echo $currIndex+1?></span>/<?php echo $imgSize;?>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex+1 < $imgSize ? $currIndex + 1 : $imgSize-1)."\"";?>>
|
|
|
|
|
<img src=<?php echo "\"".$imgList[$currIndex]."\" alt=\"".$imgList[$currIndex]."\" id=\"main_image\" width=\"100%\""?>>
|
|
|
|
|
</a>
|
|
|
|
|
<br />
|
|
|
|
|
</noscript>
|
|
|
|
|
<!-- Ende der Variante für die Leute ohne JavaScript -->
|
|
|
|
|
|
|
|
|
|
<!--Beginn der Einbindung des Counters-->
|
|
|
|
|
<?php
|
|
|
|
|
$chCounter_page_title = "Einzelansicht ". $wkName . "[". $currIndex+1 . "/" . $imgSize . "]";
|
|
|
|
|
$chCounter_visible=0;
|
|
|
|
|
include( $_SERVER['DOCUMENT_ROOT'].'/expCounter/counter.php');?>
|
|
|
|
|
<!--Ende der Einbindung des Counters-->
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
<?php
|
|
|
|
|
header("Content-Type: text/html; charset=utf-8");
|
|
|
|
|
header("Cache-Control: max-age=3600");
|
|
|
|
|
|
|
|
|
|
$wkName = "3. Porphyrpokal der Stadt Rochlitz";
|
|
|
|
|
|
|
|
|
|
$imgList = array( "P7120007.jpg","P7120008.jpg","P7120009.jpg","P7120010.jpg","P7120011.jpg","P7120012.jpg","P7120013.jpg","P7120014.jpg","P7120015.jpg","P7120016.jpg","P7120017.jpg","P7120018.jpg","P7120019.jpg","P7120020.jpg","P7120021.jpg","P7120022.jpg","P7120023.jpg","P7120024.jpg","P7120026.jpg","P7120028.jpg","P7120029.jpg" );
|
|
|
|
|
$imgSize = count( $imgList );
|
|
|
|
|
assert( $imgSize > 0, "Bilder leider nicht verfügbar!");
|
|
|
|
|
isset($_GET["index"]) ? $currIndex = intval( $_GET["index"] ) : 0;
|
|
|
|
|
if( $currIndex < 0 ) $currIndex = 0;
|
|
|
|
|
if( $currIndex >= $imgSize) $currIndex = $imgSize-1;
|
|
|
|
|
?>
|
|
|
|
|
<!DOCTYPE HTML>
|
|
|
|
|
<html lang="de">
|
|
|
|
|
<head>
|
|
|
|
|
<title><?php echo $wkName?></title>
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
<!-- Leute mit aktiviertem JavaScript sollen die BlueImpGallery gezeigt bekommen -->
|
|
|
|
|
<?php
|
|
|
|
|
echo "window.location = \"index.php?index=".$currIndex."\"";
|
|
|
|
|
?>
|
|
|
|
|
</script>
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
|
|
|
<meta name="description" content="Die Judoka des Chemnitzer WSV beim Wettkampf <?php echo $wkName?>">
|
|
|
|
|
<meta name="keywords" content="Judo, Bilder, <?php echo $wkName?>, Photos, Album, Galerie, Wettkampf, CWSV, Chemnitz,">
|
|
|
|
|
<link rel="icon" href="/ressourcen/graphiken/icons/cwsv.ico">
|
|
|
|
|
<style type="text/css" media="screen">/*<![CDATA[*/ @import "table.css"; /*]]>*/</style>
|
|
|
|
|
|
|
|
|
|
<!-- BluimpGallery Zeug -->
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<link rel="stylesheet" href="/ressourcen/blueimpGallery/css/blueimp-gallery.css">
|
|
|
|
|
<link rel="stylesheet" href="/ressourcen/blueimpGallery/css/blueimp-gallery-indicator.css">
|
|
|
|
|
<link rel="stylesheet" href="/ressourcen/blueimpGallery/css/blueimp-gallery-video.css">
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
<!-- Body -->
|
|
|
|
|
<body style="color: #000000; background-color: #FFAE00">
|
|
|
|
|
<!-- Variante für die Leute ohne JavaScript (Anfang)-->
|
|
|
|
|
<noscript>
|
|
|
|
|
<table style="margin-left:auto;margin-right:auto;">
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<a href="index.php">
|
|
|
|
|
<img src="nav_topb.png" id="ntop" alt="Album" title="Album">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href="view.php?index=0">
|
|
|
|
|
<img src="nav_firstb.png" id="nfirst" alt="Zum Anfang" title="Zum Anfang">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex-10 >= 0 ? $currIndex - 10 : 0)."\"";?>>
|
|
|
|
|
<img src="nav_prev10b.png" id="nprev10" alt="10 Bilder zurück" title="10 Bilder zurück">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex-1 >= 0 ? $currIndex - 1 : 0)."\"";?>>
|
|
|
|
|
<img src="nav_prevb.png" id="nprev" alt="Bild zurück" title="Bild zurück">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex+1 < $imgSize ? $currIndex + 1 : $imgSize-1)."\"";?>>
|
|
|
|
|
<img src="nav_nextb.png" id="nnext" alt="Bild vor" title="Bild vor">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex+10 < $imgSize ? $currIndex + 10 : $imgSize-1)."\"";?>>
|
|
|
|
|
<img src="nav_next10b.png" id="nnext10" alt="10 Bilder vor" title="10 Bilder vor">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<a href=<?php echo "\"view.php?index=".( $imgSize-1 )."\""?>>
|
|
|
|
|
<img src="nav_lastb.png" id="nlast" alt="Zum Ende" title="Zum Ende">
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<span id="image_name1"><?php echo $imgList[$currIndex]?></span>(<span id="image_num1"><?php echo $currIndex+1?></span>/<?php echo $imgSize;?>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</table>
|
|
|
|
|
<a href=<?php echo "\"view.php?index=".( $currIndex+1 < $imgSize ? $currIndex + 1 : $imgSize-1)."\"";?>>
|
|
|
|
|
<img src=<?php echo "\"".$imgList[$currIndex]."\" alt=\"".$imgList[$currIndex]."\" id=\"main_image\" width=\"100%\""?>>
|
|
|
|
|
</a>
|
|
|
|
|
<br />
|
|
|
|
|
</noscript>
|
|
|
|
|
<!-- Ende der Variante für die Leute ohne JavaScript -->
|
|
|
|
|
|
|
|
|
|
<!--Beginn der Einbindung des Counters-->
|
|
|
|
|
<?php
|
|
|
|
|
$chCounter_page_title = "Einzelansicht ". $wkName . "[". $currIndex+1 . "/" . $imgSize . "]";
|
|
|
|
|
$chCounter_visible=0;
|
|
|
|
|
include( $_SERVER['DOCUMENT_ROOT'].'/expCounter/counter.php');?>
|
|
|
|
|
<!--Ende der Einbindung des Counters-->
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
|