Skip to content

Instantly share code, notes, and snippets.

@Awilum
Created February 1, 2019 12:35
Show Gist options
  • Select an option

  • Save Awilum/0e7a521acebbca9b8b9a5266c381caa2 to your computer and use it in GitHub Desktop.

Select an option

Save Awilum/0e7a521acebbca9b8b9a5266c381caa2 to your computer and use it in GitHub Desktop.
<ul class="navbar-nav">
<?php foreach (Arr::sort(Menus::get('default')['items'], 'order') as $item): ?>
<li class="nav-item">
<a class="nav-link <?php if ($item['url'] !== '' && strpos(Http::getUriString(), $item['url']) !== false): ?>active<?php endif ?>" href="<?php if(isset($item['external'])): ?> <?= $item['url'] ?> <?php else: ?> <?= Http::getBaseUrl() . '/' . $item['url'] ?> <?php endif ?>"><?= $item['title'] ?></a>
</li>
<?php endforeach ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment