-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
32 lines (30 loc) · 1017 Bytes
/
header.php
File metadata and controls
32 lines (30 loc) · 1017 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
29
30
31
32
<!DOCTYPE html>
<html lang="<?php bloginfo('language'); ?>">
<head>
<!-- metas -->
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content=""> <!-- TODO ver en codex -->
<meta name="author" content=""> <!-- TODO ver en codex -->
<title><?php
if (is_home()) {
bloginfo('name');
echo ' - '; bloginfo('description');
} else {
the_title();
echo ' - '; bloginfo('name');
}
?>
</title>
<?php wp_head(); ?>
</head>
<body>
<header>
<div class="container">
<!--<h1><?php bloginfo('name'); ?></h1>-->
<img src="https://raw.githubusercontent.com/DanMnez/Rooty/master/library/images/logo_expanded_rooty_light.png" id="logo" alt="Rooty">
<nav class="main-nav">
<?php wp_nav_menu( array( 'theme_location' => 'navigation' ) ); ?>
</nav>
</div>
</header>