Files
gallery3/themes/default/views/photo.html.php
Bharat Mediratta 26c9ec6d4b Make header buttons, line them up nicely and float them to the right
so that they don't push the album grid down.
2008-11-27 22:08:56 +00:00

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>