blob: 1d54fe7dacf092e24001335cf6d7b23bae9a8f78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<? defined("SYSPATH") or die("No direct script access."); ?>
<div id="gItem">
<a href="" class="gButtonLink">Full size (1024x768)</a>
<a href="" class="gButtonLink">Slideshow</a>
<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>
<? comment::show_comments($item->id); ?>
</div>
|