File: /www/wwwroot/biographybirthday.com/wp-content/themes/bio/header.php
<?php
/**
* The header for our theme
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package WordPress
* @subpackage Twenty_Nineteen
* @since 1.0.0
*/
?><!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<?php
if ( is_paged() ) {
echo '<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">';
}
?>
<link rel="profile" href="https://gmpg.org/xfn/11" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.10.1/css/all.css" integrity="sha384-wxqG4glGB3nlqX0bi23nmgwCSjWIW13BdLUEYC4VIMehfbcro/ATkyDsF/AbIOVe" crossorigin="anonymous">
<?php wp_head(); ?>
<script>
var ajaxURL = "<?php echo admin_url( 'admin-ajax.php' )?>";
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-2747381071479941" crossorigin="anonymous"></script>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>
<nav class="nav nav-fixed-top" role="navigation">
<div class="container">
<div class="row no-gutter">
<div class="col-xs-2 col-sm-3 col-md-3">
<a class="brand" href="/" title="<?php echo get_bloginfo();?>">
<img class="hide-in-desktop" src="<?php echo get_theme_file_uri('/img/favicon_small.png');?>" width="50px" height="50px">
<img class="hide-in-mobile" src="<?php echo get_theme_file_uri('/img/biography_birthday_logo.png');?>" width="223px" height="50px">
</a>
</div>
<div class="col-xs-10 col-sm-4 col-md-4">
<form id="fb_search" class="search" role="form" name="fb_search" action="search" method="post"/>
<input id="search-autocomplete" autocomplete="off" type="search" name="q" placeholder=" Search " class="form-control search search-bar search-input" aria-label="Enter Celebrity NAME" maxlength="80">
<img class="Typeahead-spinner" src="<?php echo get_theme_file_uri('/img/loader.gif');?>">
<button type="submit" class="btn btn-search" aria-label="Search" title="Search"><i class="fa fa-search"></i></button>
</form>
</div>
<div class="col-sm-5 col-md-5">
<ul class="quick-links">
<li><a href="/trending" title="trending"><i class="fa fa-chart-line"></i>Trending</a></li>
<li><a href="/most-popular" title="popular"><i class="fa fa-star"></i>Popular</a></li>
<li><a href="/today-birthdays" title="popular"><i class="fa fa-birthday-cake"></i>Birthday</a></li>
<li><a id="random-person" href="#" title="random" class="random-person"><i class="fa fa-random"></i>Random</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>