blob: 6ac30d86701a3f8c8ae660beb7fabd0ad86de416 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<? defined("SYSPATH") or die("No direct script access."); ?>
<div id="gItemHeader">
<div id="gItemHeaderButtons">
<a href="" class="gButtonLink">
<?= sprintf(_("Full size (%dx%d)"), $item->width, $item->height) ?>
</a>
<?= $theme->photo_top() ?>
</div>
</div>
<div id="gItem">
<img id="gPhotoID-<?= $item->id ?>" alt="photo" src="<?= $item->resize_url() ?>"
width="<?= $item->resize_width ?>"
height="<?= $item->resize_height ?>" />
<h1><?= $item->title_edit ?></h1>
<div><?= $item->description_edit ?></div>
<?= $theme->photo_bottom() ?>
</div>
|