-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader-portfolio.php
45 lines (37 loc) · 1.43 KB
/
header-portfolio.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
<?php
/**
* Header template
*
* @package Portfolio Press
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width" />
<title><?php wp_title( '|', true, 'right' ); ?></title>
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php echo get_stylesheet_uri(); ?>" />
<?php if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); ?>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
<![endif]-->
<?php wp_head(); ?>
</head>
<body class="portfolio">
<div id="wrapper-portfolio">
<div id="main-portfolio">
<div id="coluna-esquerda">
<hgroup id="logo">
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
<?php echo bloginfo( 'name' ) ?>
</a>
</hgroup>
<nav id="navigation">
<h3 class="menu-toggle"><?php _e( 'Menu', 'portfoliopress' ); ?></h3>
<?php wp_nav_menu( array( 'theme_location' => 'primary') ); ?>
</nav><!-- #access -->
</div><!-- #coluna-esquerda -->