Skip to content

Instantly share code, notes, and snippets.

@AndriyShepitsen
Last active December 17, 2015 11:38
Show Gist options
  • Save AndriyShepitsen/5603385 to your computer and use it in GitHub Desktop.
Save AndriyShepitsen/5603385 to your computer and use it in GitHub Desktop.
topNavPanel
<div class="dividerTop"></div>
<div class="navPanel">
<nav class="top-bar">
<section class="top-bar-section">
<ul class="right">
<li class="divider"></li>
<li>
<?php
echo anchor ('home', 'Home');
?>
</li>
<li class="divider"></li>
<li>
<?php
echo anchor ('home', 'About Us');
?>
</li>
<li class="divider"></li>
<li>
<?php
echo anchor ('buying', 'Buying');
?>
</li>
<li class="divider"></li>
<li>
<?php
echo anchor ('home', 'Selling');
?>
</li>
<li class="divider"></li>
<li>
<?php
echo anchor ('home', 'Moving');
?>
</li>
<li class="divider"></li>
<li>
<?php
echo anchor ('news', 'News');
?>
</li>
<li class="divider"></li>
<li>
<?php
echo anchor ('home', 'Contact Us');
?>
</li>
</ul>
</section>
</nav>
</div>
<div class="divider">
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment