-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhtml-header.php
More file actions
79 lines (59 loc) · 2.87 KB
/
html-header.php
File metadata and controls
79 lines (59 loc) · 2.87 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="initial-scale=1.6, maximum-scale=1.0, width=device-width"/>
<!-- Schema.org Description -->
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<!-- Setting favicon and Apple Touch Icon -->
<?php cogito_get_icons(); ?>
<!-- Apple Developer Options -->
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?>" href="<?php bloginfo('rss2_url'); ?>" />
<title><?php
/*
* Print the <title> tag based on what is being viewed.
* Titles in wordpress can get complex. This is "borrowed"
* from TwentyEleven
*/
global $page, $paged;
wp_title( '|', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'cogito_wp' ), max( $paged, $page ) );
?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php // This is not a great way to do this but until wordress catches up with conditional stylesheets we're stuck with it. ?>
<?php
/* We add some JavaScript to pages with the comment form
* to support sites with threaded comments (when in use).
*/
if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' );
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*
* NOTE: Style.css is below this so that it has final say
*
*/
wp_head();
?>
<?php // Most themes put the styles.css earlier but we want it later so it can have final say. ?>
<!--[if gte IE 9]><!-->
<link rel='stylesheet' id='app-ie6-css' href='<?php print get_stylesheet_directory_uri() . '/css/app.css'; ?>' type='text/css' media='all' />
<!--<![endif]-->
<link rel="stylesheet" type="text/css" media="all" href="<?php echo get_stylesheet_uri(); ?>" />
<?php cogito_html_header(); ?>
</head>