friendica-directory/src/templates/widget/populartags.phtml
Hypolite Petovan ff9eab39a7 Add translation string to templates
- Lower popular widget lists to 10 elements
- Add language to profile and server display
2018-11-16 00:00:03 -05:00

13 lines
322 B
PHTML

<div>
<h3><?php echo $this->__('Popular Tags')?></h3>
<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>