37 lines
971 B
PHP
37 lines
971 B
PHP
<?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 //zp_apply_filter('theme_head');
|
|
//zp_remove_filter('theme_head', 'picturefilljs');
|
|
?>
|
|
|
|
</head>
|
|
<body>
|
|
<?php zp_apply_filter('theme_body_open'); ?>
|
|
|
|
<?php
|
|
|
|
//printSlideShow(true,true);
|
|
|
|
//printSlideShow();
|
|
|
|
printrslideshow();
|
|
|
|
?>
|
|
|
|
<?php //zp_apply_filter('theme_body_close'); ?>
|
|
|
|
</body>
|
|
</html>
|