2009-01-01 00:23:29 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2009-10-04 00:27:22 -06:00
|
|
|
<ul class="g-metadata">
|
2009-06-28 17:53:20 -06:00
|
|
|
<li>
|
|
|
|
|
<strong class="caption"><?= t("Title:") ?></strong>
|
2009-08-29 22:54:20 -07:00
|
|
|
<?= html::purify($item->title) ?>
|
2009-06-28 17:53:20 -06:00
|
|
|
</li>
|
|
|
|
|
<? if ($item->description): ?>
|
|
|
|
|
<li>
|
|
|
|
|
<strong class="caption"><?= t("Description:") ?></strong>
|
2009-08-29 22:54:20 -07:00
|
|
|
<?= nl2br(html::purify($item->description)) ?>
|
2009-06-28 17:53:20 -06:00
|
|
|
</li>
|
|
|
|
|
<? endif ?>
|
2009-08-27 17:15:20 -07:00
|
|
|
<? if (!$item->is_album()): ?>
|
2009-06-28 17:53:20 -06:00
|
|
|
<li>
|
2009-08-27 17:15:20 -07:00
|
|
|
<strong class="caption"><?= t("File name:") ?></strong>
|
2009-08-29 22:54:20 -07:00
|
|
|
<?= html::clean($item->name) ?>
|
2009-06-28 17:53:20 -06:00
|
|
|
</li>
|
|
|
|
|
<? endif ?>
|
|
|
|
|
<? if ($item->captured): ?>
|
|
|
|
|
<li>
|
|
|
|
|
<strong class="caption"><?= t("Captured:") ?></strong>
|
2010-08-08 16:54:31 -07:00
|
|
|
<?= gallery::date_time($item->captured)?>
|
2009-06-28 17:53:20 -06:00
|
|
|
</li>
|
|
|
|
|
<? endif ?>
|
|
|
|
|
<? if ($item->owner): ?>
|
|
|
|
|
<li>
|
|
|
|
|
<strong class="caption"><?= t("Owner:") ?></strong>
|
|
|
|
|
<? if ($item->owner->url): ?>
|
2009-08-29 22:54:20 -07:00
|
|
|
<a href="<?= $item->owner->url ?>"><?= html::clean($item->owner->display_name()) ?></a>
|
2009-06-28 17:53:20 -06:00
|
|
|
<? else: ?>
|
2009-08-29 22:54:20 -07:00
|
|
|
<?= html::clean($item->owner->display_name()) ?>
|
2009-03-09 07:54:37 +00:00
|
|
|
<? endif ?>
|
2009-06-28 17:53:20 -06:00
|
|
|
</li>
|
|
|
|
|
<? endif ?>
|
2009-06-28 18:10:42 -07:00
|
|
|
</ul>
|