-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
59 lines (53 loc) · 2.58 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
* The Header
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package Pontos de Cultura
* @since Pontos de Cultura 1.0
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php wp_title( '|', true, 'right' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
<![endif]-->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!--[if lt IE 8]>
<p class="browse-happy">
<?php _e( 'You are using an <em>outdated</em> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.', 'pontosdecultura' ); ?>
</p>
<![endif]-->
<div class="site-wrapper hfeed" >
<?php do_action( 'before' ); ?>
<header id="masthead" class="site-header site-area clearfix" role="banner">
<div class="container">
<div class="site-branding">
<?php $logo_uri = get_template_directory_uri() . '/images/header-logo.png'; ?>
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
<img class="site-logo" src="<?php echo $logo_uri; ?>" alt="Logo <?php bloginfo ( 'name' ); ?>" />
</a>
<h1 class="site-title screen-reader-text"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<h2 class="site-description screen-reader-text"><?php bloginfo( 'description' ); ?></h2>
</div><!-- .site-branding -->
<div class="language-switcher">
<?php Pontosdecultura::language_selector(); ?>
</div>
<nav role="navigation" class="site-navigation main-navigation">
<?php wp_nav_menu( array( 'menu' => 'main', 'theme_location' => 'primary', 'depth' => 1 ) ); ?>
</nav><!-- .site-navigation .main-navigation -->
</div><!-- .container -->
</header><!-- #masthead .site-header -->
<div id="content" class="site-content site-area">
<?php if ( ! is_home() ) : ?>
<div class="container">
<?php endif; ?>