-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathheader.php
More file actions
61 lines (42 loc) · 1.35 KB
/
header.php
File metadata and controls
61 lines (42 loc) · 1.35 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" />
<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<meta name="ComicPress" content="<?php echo esc_html( comicpress_themeinfo( 'version' ) ); ?>" />
<?php
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<?php
comicpress_get_sidebar( 'above-header' );
?>
<div id="page-wrap">
<div id="page">
<header id="header">
<div class="header-info">
<h1>
<a href="<?php echo esc_html( home_url() ); ?>">
<?php
bloginfo( 'name' );
?>
</a>
</h1>
<div class="description">
<?php
bloginfo( 'description' );
?>
</div>
</div>
<?php
comicpress_get_sidebar( 'header' );
?>
<div class="clear"></div>
</header>
<?php
if ( ! comicpress_themeinfo( 'disable_default_menubar' ) && function_exists( 'comicpress_menubar' ) ) comicpress_menubar();
if ( comicpress_themeinfo( 'enable_breadcrumbs' ) ) comicpress_breadcrumbs();
comicpress_get_sidebar( 'menubar' );
get_template_part( 'layout', 'head' );