-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
38 lines (29 loc) · 1.67 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
<!DOCTYPE html>
<html lang="es">
<head>
<!-- Documment settings -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Page meta -->
<title><?php bloginfo('name'); ?></title>
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/assets/favicon.ico">
<?php wp_head(); ?>
<!-- Styles'n'Scripts -->
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/assets/css/all.css" />
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/assets/vendor/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" />
</head>
<body>
<div id="fb-root"></div>
<header id="header">
<div class="wrapper">
<a href="<?php bloginfo('url'); ?> " class="logo"><img src="<?php echo get_template_directory_uri(); ?>/assets/images/logo.png" alt="<?php bloginfo('name'); ?>"></a>
<nav class="nav"><ul><?php wp_list_categories('title_li'); ?></ul></nav>
<div class="share-tipsti">
<div class="fb-share-button" data-href="https://www.facebook.com/tipsticom" data-layout="button_count"></div>
<div class="twitter"><a href="https://twitter.com/tipsticom" class="twitter-follow-button" data-show-count="false" data-show-screen-name="false">Follow @tipsticom</a></div>
</div>
</div>
</header>