summaryrefslogtreecommitdiff
path: root/themes/default/views/photo.html.php
blob: 26a28b18e790bb28a40e32661d612db68161926a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<? 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>