1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/modules/about_this_photo/views/about_this_photo.html.php
Bharat Mediratta 7b336e8804 New "About this photo" module that puts info in the sidebar about when
the photo was created and what tags it has.  Written for undagiga
in http://gallery.menalto.com/node/99716
2010-12-19 17:41:38 -08:00

18 lines
461 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul class="g-metadata">
<li>
<strong class="caption"><?= t("Date:") ?></strong>
<?= $date ?>
</li>
<li>
<strong class="caption"><?= t("Time:") ?></strong>
<?= $time ?>
</li>
<li>
<strong class=="caption"><?= t("Tags:") ?></strong>
<? foreach ($tags as $tag): ?>
<a href="<?= $tag->url() ?>"><?= html::clean($tag->name) ?></a>
<? endforeach?>
</li>
</ul>