Skip to content

Instantly share code, notes, and snippets.

View GeeH's full-sized avatar

Gary Hockin GeeH

View GitHub Profile
@BinaryKitten
BinaryKitten / boostrap-nav.php
Created March 18, 2013 14:43
Bootstrap Navigation style
<ul class="nav">
<?php foreach ($this->container AS $page) { ?>
<?php
// render li tag and page
$liClass = '';
$liClass .= $page->isActive() ? ' active' : '';
$liClass .= $page->getClass() ? ' ' . $page->getClass() : '';
$linkDropdown = '';
if ($page->hasChildren()) {
@ziadoz
ziadoz / awesome-php.md
Last active April 17, 2024 21:06
Awesome PHP — A curated list of amazingly awesome PHP libraries, resources and shiny things.