mirror of
https://github.com/Frumph/comicpress.git
synced 2026-01-31 02:05:17 +01:00
62 lines
1.3 KiB
PHP
62 lines
1.3 KiB
PHP
<!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' );
|