Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
airmobeuag
/
2020
/
wp-content
/
themes
/
airmob
/
✏️
Editing: header.php
<?php /** * The header for the theme * */ ?> <!doctype html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <a class="screen-reader-text" href="#content">Skip to content</a> <div class="topbar"> <a href="/espace-client" class="espace-client">Espace client</a> <span class="topbar-telephone"> <a href="tel:05-82-99-31-31"><i class="fas fa-phone-alt"></i> 05 82 99 31 31</a> </span> </div> <header class="site-header"> <div class="mobile-menu-close"> <i class="fas fa-times" onclick="closeMobileMenu();"></i> </div> <div class="logo"> <?php // Display the Custom Logo the_custom_logo(); // No Custom Logo, just display the site's name if (!has_custom_logo()) { ?> <h1><?php bloginfo('name'); ?></h1> <?php } ?> </div> <div class="mobile-burger-menu"> <i class="fas fa-bars" onclick="openMobileMenu();"></i> </div> <nav class="main-navigation"> <?php wp_nav_menu( array( 'theme_location' => 'header-menu' ) ); ?> <a href="/commander" class="airmob-btn orange-btn">Commander</a> </nav> </header> <div id="content" class="site-content">
💾 Save
❌ Cancel