summaryrefslogtreecommitdiff
path: root/modules/tag/views/tag_cloud.html.php
blob: de12bb4963493a0f00b73e375207ca795f714fbd (plain)
1
2
3
4
5
6
7
8
9
<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
  <? foreach ($tags as $tag): ?>
  <li class="size<?=(int)(($tag->count / $max_count) * 7) ?>">
    <span><?= $tag->count ?> photos are tagged with </span>
    <a href="<?= $tag->url() ?>"><?= html::clean($tag->name) ?></a>
  </li>
  <? endforeach ?>
</ul>