Files
gallery3/themes/default/views/photo.html.php
T

15 lines
444 B
PHP
Raw Normal View History

2008-11-04 21:24:42 +00:00
<? defined("SYSPATH") or die("No direct script access."); ?>
<div id="gItemHeader">
<?= $theme->photo_top() ?>
<h1><?= $item->title_edit ?></h1>
</div>
2008-11-21 20:13:28 +00:00
<div id="gItem">
<img id="gPhotoID-<?= $item->id ?>" alt="<?= $item->title ?>" src="<?= $item->resize_url() ?>"
width="<?= $item->resize_width ?>"
height="<?= $item->resize_height ?>" />
<div><?= $item->description_edit ?></div>
2008-11-11 20:54:12 +00:00
<?= $theme->photo_bottom() ?>
</div>