41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
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 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>
|