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 50 51
|
<?php
// This is the default gallery header (for the main gallery
// page: albums.php). It's companion is gallery.footer.default.
//
// To override this header, create a file called gallery.header
// in this directory.
//
// NOTE: This header cets inserted below the <body> tag.
//
// Some tips:
// * Some application variables:
// - Gallery Title: $gallery->app->galleryTitle
//
// $Id: gallery.header.default 11373 2005-08-15 23:01:22Z jenst $
?>
<?php
includeHtmlWrap("wrapper.header");
if (!includeTemplate('gallery.header.tpl')) {
?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<table cellpadding="0" cellspacing="0" width="100%" border="0" align="center" class="mod_headliner">
<tr valign="middle">
<td class="leftspacer"></td>
<td>
<table cellspacing="0" cellpadding="0" class="mod_toplight_bg">
<tr>
<td class="mod_toplight_left" align="<?php echo langRight() ?>"></td>
<td class="head" align="<?php echo langLeft() ?>">
<?php echo $gallery->app->galleryTitle ?>
</td>
<td class="mod_toplight_right" align="<?php echo langLeft() ?>"></td>
</tr>
</table>
</td>
</tr>
</table>
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="mod_under_hl"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top">
<?php
}
?>
|