-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
28 lines (25 loc) · 948 Bytes
/
header.php
File metadata and controls
28 lines (25 loc) · 948 Bytes
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
<?php
/*
|--------------------------------------------------------------------------
| Wordpress theme > header.php
|--------------------------------------------------------------------------
*/
?>
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><?php bloginfo('name'); ?> | <?php is_front_page() ? bloginfo('description') : wp_title(''); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<link rel="shotcurt icon" href="<?=bloginfo('template_url')?>/assets/images/icons/favicon.ico">
<link rel="stylesheet" type="text/css" href="<?=bloginfo('template_url')?>/assets/css/main.css">
<?php
wp_head();
?>
</head>
<body>
<header class="header">
</header><!-- .header -->