Skip to content

Instantly share code, notes, and snippets.

@sashtown
Created November 26, 2012 13:13
Show Gist options
  • Save sashtown/4148123 to your computer and use it in GitHub Desktop.
Save sashtown/4148123 to your computer and use it in GitHub Desktop.
Kirby: Adding icon fonts to the navigation
title: About
----
description: My awesome about site
----
icon: 
<nav class="menu" role="navigation">
<ul>
<?php foreach($pages->visible() AS $p): ?>
<li>
<a class="<?php echo $p->uid() ?><?php echo ($p->isOpen()) ? ' active' : '' ?>" href="<?php echo $p->url() ?>">
<?php echo html($p->title()) ?>
<span data-icon="<?php echo $p->icon() ?>" aria-hidden="true"></span>
</a>
</li>
<?php endforeach ?>
</ul>
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment