mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-29 03:04:08 -04:00
17 lines
565 B
PHP
17 lines
565 B
PHP
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
<div id="gItem">
|
|
<a href="" class="gButtonLink">Full size (1024x768)</a>
|
|
<?= $theme->block(dynamic_block::CONTENT_PHOTO, "slideshow") ?>
|
|
|
|
|
|
<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>
|
|
|
|
<? if (module::is_installed("comment")): ?>
|
|
<?= comment::block($theme, true); ?>
|
|
<? endif ?>
|
|
</div>
|