1er commit

Theme zenphoto
This commit is contained in:
2016-10-20 20:07:26 +02:00
commit 5cbd6357ed
81 changed files with 8984 additions and 0 deletions

41
slideshow.php Normal file
View File

@@ -0,0 +1,41 @@
<?php
// force UTF-8 Ø
if (!defined('WEBPATH')) die();
?>
<!DOCTYPE html>
<html>
<head>
<?php //zp_apply_filter('theme_head'); ?>
<title><?php printBareGalleryTitle(); ?> <?php echo gettext("Slideshow"); ?></title>
<meta http-equiv="content-type" content="text/html; charset=<?php echo LOCAL_CHARSET; ?>" />
<link rel="Shortcut Icon" href="http://<?php echo $_SERVER['HTTP_HOST']; ?>/photoblog/images/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="<?php echo $_zp_themeroot; ?>/css/theme.css" type="text/css" />
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<?php if ((!function_exists('printrslideshow')) && (!function_exists('printsupersized'))) {
zp_apply_filter('theme_head');
}
?>
</head>
<body>
<?php zp_apply_filter('theme_body_open'); ?>
<?php
if (function_exists('printsupersized')) {
printsupersized();
}
elseif (function_exists('printrslideshow')) {
printrslideshow();
}
else {
printSlideShow();
}
?>
<?php //zp_apply_filter('theme_body_close'); ?>
</body>
</html>