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.1/modules/about_this_photo/views/about_this_photo.html.php

18 lines
461 B
PHP
Raw Normal View History

<?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>