1
0
Fork 0
mirror of https://github.com/friendica/friendica-directory synced 2024-06-25 06:20:34 +02:00
friendica-docker/src/templates/widget/accounttypetabs.phtml
2018-11-11 21:08:33 -05:00

9 lines
347 B
PHTML

<ul class="nav nav-tabs justify-content-center">
<?php foreach ($tabs as $tab): ?>
<li class="nav-item">
<a class="nav-link<?php echo $tab['active'] ? ' active' : '' ?>"
href="<?php echo $this->escapeHtmlAttr($tab['link']) ?>"><?php echo $this->e($tab['title']) ?></a>
</li>
<?php endforeach; ?>
</ul>