mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
15 lines
444 B
PHP
15 lines
444 B
PHP
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
<div id="gItemHeader">
|
|
<?= $theme->photo_top() ?>
|
|
<h1><?= $item->title_edit ?></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_edit ?></div>
|
|
|
|
<?= $theme->photo_bottom() ?>
|
|
</div>
|