1
0
Fork 0
mirror of https://github.com/friendica/friendica-directory synced 2024-06-07 11:20:14 +02:00
friendica-docker/src/templates/widget/accounttypetabs.phtml

9 lines
357 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($this->u($tab['link'])) ?>"><?php echo $this->e($tab['title']) ?></a>
</li>
<?php endforeach; ?>
</ul>