-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
35 lines (31 loc) · 1.38 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width" />
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<div class="container">
<a class="screenread skip" href="#main"><?php _e( 'Skip to content', 'minart' ); ?></a>
<header class="cf" role="banner">
<div class="titles">
<?php
if ( is_front_page() || is_home() ) : ?>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<?php else : ?>
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
<?php endif; ?>
<p class="sub-title"><?php bloginfo('description'); ?></p>
</div>
<?php if ( has_nav_menu('header-menu') ):?>
<nav id="topmen" class="header-men" role="navigation" aria-label="<?php _e( 'Main menu', 'minart' ); ?>">
<button class="mobile-toggle" type="button"><?php _e( 'toggle menu', 'minart' ); ?></button>
<?php wp_nav_menu( array( 'theme_location' => 'header-menu', 'menu_class' => 'headmen', 'container' => false, 'fallback_cb'=> false ) ); ?>
</nav>
<?php endif;?>
</header>