2 $this->includeTemplate($GLOBALS['top_include']);
3 if ($tags && count($tags) > 0) {
7 <?php echo T_("Sort by:"); ?>
8 <a href="?sort=alphabet_asc"><?php echo T_("Alphabet"); ?></a><span> / </span>
9 <a href="?sort=popularity_asc"><?php echo T_("Popularity"); ?></a>
15 foreach ($tags as $row) {
16 $entries = T_ngettext('bookmark', 'bookmarks', $row['bCount']);
17 $contents .= '<a href="'. sprintf($cat_url, $user, filter($row['tag'], 'url')) .'" title="'. $row['bCount'] .' '. $entries .'" rel="tag" style="font-size:'. $row['size'] .'">'. filter($row['tag']) .'</a> ';
26 $this->includeTemplate($GLOBALS['bottom_include']);