forked from deivisonarthur/blog.thiagobelem.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
45 lines (36 loc) · 2.02 KB
/
header.php
File metadata and controls
45 lines (36 loc) · 2.02 KB
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
<!DOCTYPE html>
<html <?php language_attributes() ?> itemscope itemtype="http://schema.org/Blog">
<head>
<meta charset="<?php bloginfo('charset') ?>" />
<title><?php wp_title('-', true, 'right'); bloginfo() ?></title>
<!-- DNS Prefetching -->
<link rel="dns-prefetch" href="//ajax.googleapis.com" />
<link rel="dns-prefetch" href="//thiagobelem-blog.s3.amazonaws.com" />
<meta name="description" content="<?php bloginfo('description') ?>" />
<meta name="keywords" content="..." />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Stylesheets -->
<link rel="stylesheet/less" href="<?php bloginfo('template_url') ?>/css/estilo.less" />
<link rel="stylesheet/less" href="<?php bloginfo('template_url') ?>/css/mobile.less" media="screen and (max-width: 480px)" />
<!-- LESS -->
<script src="<?php bloginfo('template_url') ?>/js/less-1.3.0.min.js"></script>
<!-- RSS & Atom -->
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo() ?> - RSS" href="<?php bloginfo('rss2_url') ?>" />
<link rel="alternate" type="application/atom+xml" title="<?php bloginfo() ?> - Atom" href="<?php bloginfo('atom_url') ?>" />
<!-- Author -->
<link rel="author" href="http://thiagobelem.net" />
<link rel="author" href="https://plus.google.com/108724422355747527461" />
<meta name="google-site-verification" content="6bmTj_ZRXwDRmc_1FQRXrDieEICwliTKpk_IWoxoNbc" />
</head>
<body <?php body_class() ?>>
<header class="header">
<hgroup>
<h1 itemprop="name"><a href="<?php bloginfo('url') ?>" itemprop="url"><?php bloginfo() ?></a></h1>
<h2 itemprop="description"><?php bloginfo('description') ?></h2>
</hgroup>
<div class="author" itemprop="author" itemscope itemtype="http://schema.org/Person">
<a href="http://thiagobelem.net"><img src="http://gravatar.com/avatar/67a6eb9b43b617b2051b912b8373a156?s=80" alt="Thiago Belem" itemprop="image" /></a>
<h3 itemprop="name"><a href="http://thiagobelem.net" itemprop="url">Thiago Belem</a></h3>
<p itemprop="description">Lorem ipsum</p>
</div>
</header>