blob: 8c0f7f5ec0f623cc3eba87c3bb44c362b27e7480 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="gItem">
<?= $theme->photo_top() ?>
<ul id="gPager">
<li><?= t("%position of %total", array("position" => $position, "total" => $sibling_count)) ?></li>
<? if ($previous_item): ?>
<li><span class="ui-icon ui-icon-seek-prev"></span><a href="<?= $previous_item->url() ?>"><?= t("previous") ?></a></li>
<? endif ?>
<? if ($next_item): ?>
<li><a href="<?= $next_item->url() ?>"><?= t("next") ?></a><span class="ui-icon ui-icon-seek-next"></span></li>
<? endif ?>
</ul>
<?= $item->resize_tag(array("id" => "gPhotoId-{$item->id}")) ?>
<div id="gInfo">
<h1><?= $item->title ?></h1>
<div><?= $item->description ?></div>
</div>
<?= $theme->photo_bottom() ?>
</div>
|