friendica-directory/src/templates/widget/populartags.phtml

13 lines
322 B
PHTML
Raw Normal View History

2018-11-12 03:08:33 +01:00
<div>
<h3><?php echo $this->__('Popular Tags')?></h3>
2018-11-12 03:08:33 +01:00
<ul>
<?php foreach ($tags as $tag): ?>
<li>
<a href="search?q=<?php echo $this->escapeUrl($tag['term']) ?>">
<?php echo $this->e($tag['term']) ?>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>