Skip to content

Instantly share code, notes, and snippets.

@johnhamelink
Created January 26, 2016 16:08
Show Gist options
  • Select an option

  • Save johnhamelink/3bf9ed0a914b83a101ae to your computer and use it in GitHub Desktop.

Select an option

Save johnhamelink/3bf9ed0a914b83a101ae to your computer and use it in GitHub Desktop.
<div id="mobile-navigation" class="hidden-sm hidden-md hidden-lg">
<div class="inner">
<ul class="text-uppercase">
<li><a <?php if ($currentPage == "homepage") { echo "class='active'"; } ?> href="index.php">Welcome</a></li>
<li><a <?php if ($currentPage == "team") { echo "class='active'"; } ?> href="the-team.php">About Us</a></li>
<li><a href="https://itunes.apple.com/gb/app/find-a-player/id662978301" target="_blank">Free App Download - IOS</a></li>
<li><a href="https://play.google.com/store/apps/details?id=com.findaplayer.letsplay" target="_blank">Free App Download - Android</a></li>
<li><a <?php if ($currentPage == "contact") { echo "class='active'"; } ?> href="contact.php">Get In Touch</a></li>
</ul>
<div class="social">
<a href="https://twitter.com/findaplayer" target="_blank"><img src="assets/img/icons/twitter.png" alt=""></a></a>
<a href="https://www.facebook.com/findaplayer" target="_blank"><img src="assets/img/icons/facebook.png" alt=""></a></a>
<a href="https://www.youtube.com/channel/UCBHzPajXUEZYxGOyXW4VNAA" target="_blank"><img src="assets/img/icons/youtube.png" alt=""></a></a>
</div>
</div>
</div><!-- /mobile navigation -->
<span id="mobileToggle" class="closed">
<i class="glyphicon open glyphicon-menu-hamburger"></i>
<i class="glyphicon closed glyphicon glyphicon glyphicon-remove"></i>
</span><!-- /mobile tab -->
<header id="header" class="">
<div class="container">
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
<div class="row">
<a id="logo" href="index.php"><img src="assets/img/logo.png" alt="Find a Player"></a>
</div>
</div>
<div class="hidden-xs col-sm-6 col-md-8 col-lg-8">
<div class="row text-right">
<div class="social">
<a href="https://twitter.com/findaplayer" target="_blank"><img src="assets/img/icons/twitter.png" alt=""></a></a>
<a href="https://www.facebook.com/findaplayer" target="_blank"><img src="assets/img/icons/facebook.png" alt=""></a></a>
<a href="https://www.youtube.com/channel/UCBHzPajXUEZYxGOyXW4VNAA" target="_blank"><img src="assets/img/icons/youtube.png" alt=""></a></a>
</div><!-- /social media -->
</div>
<div class="row text-right">
<nav id="primary">
<ul class="text-uppercase">
<li><a <?php if ($currentPage == "homepage") { echo "class='active'"; } ?> href="index.php">Welcome</a></li>
<li><a <?php if ($currentPage == "team") { echo "class='active'"; } ?> href="the-team.php">About Us</a></li>
<li><a <?php if ($currentPage == "contact") { echo "class='active'"; } ?> href="contact.php">Get In Touch</a></li>
</ul>
</nav><!-- /primary navigation -->
</div>
</div>
</div>
</header><!-- /header -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment