blob: 7cfe542a38001b68eed41e993d33718e745bded3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<? defined("SYSPATH") or die("No direct script access."); ?>
<div id="gItemHeader">
<?= $theme->photo_top() ?>
<h1><?= $item->title ?></h1>
</div>
<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 ?></div>
<?= $theme->photo_bottom() ?>
</div>
|