Advertisement
Guest User

Untitled

a guest
Mar 20th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.59 KB | None | 0 0
  1. <div id="navigation-ui" class="clearfix">
  2.  
  3. <ul id="nav">
  4.  
  5. <li><a href="home"<?php if ($_GET['page'] == 'home') echo ' class="active"'; ?>>Home</a></li>
  6. <li><a href="portfolio"<?php if ($_GET['page'] == 'portfolio') echo ' class="active"'; ?>>Portfolio</a></li>
  7. <li><a href="resume"<?php if ($_GET['page'] == 'resume') echo ' class="active"'; ?>>Resume</a></li>
  8. <li><a href="about"<?php if ($_GET['page'] == 'about') echo ' class="active"'; ?>>About</a></li>
  9. <li class="lastLi"><a href="contact"<?php if ($_GET['page'] == 'contact') echo ' class="active"'; ?>>Contact</a></li>
  10.  
  11. </ul>
  12.  
  13. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement