-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathheader.php
47 lines (46 loc) · 2.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
<?php
wp_title('|', true, 'right');
bloginfo('name');
?>
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url');?>/style.css" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url');?>/genericons/genericons.css" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url')?>/css/layout.css"/>
<link rel="pingback" href="<?php bloginfo('pingback_url');?>"/>
<?php wp_head();?>
</head>
<body <?php body_class();?>>
<!--header container-->
<div class="header-container">
<div class="container">
<header class='main-container-size'>
<div class="banner-container">
<div class="logo-size columns-0">
<a href="<?php get_option('home')?>"><img src="<?php bloginfo('template_url')?>/images/logo.png" alt="" title="<?php bloginfo('title')?>"></a>
</div>
<div class="lang-size lang">
<div class='content'>
<a href="#">Tiếng Việt</a> | <a href="#">English</a>
</div>
</div>
</div>
<div class='nav-bar row-20'>
<div class="main-nav-size">
<?php wp_nav_menu(array(
'theme_location' => 'primary',
'container' => 'nav',
'container_class' => 'main-nav'
));?>
</div>
<?php get_search_form();?>
</div>
<?php get_template_part('featured-image');?>
</header>
</div>
</div>