mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-06-10 05:29:13 -04:00
20 lines
592 B
PHP
20 lines
592 B
PHP
<? 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>
|