mirror of
https://github.com/Frumph/easel.git
synced 2026-01-31 02:05:17 +01:00
29 lines
1.1 KiB
PHP
29 lines
1.1 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="Easel" content="<?php echo easel_themeinfo('version'); ?>" />
|
|
<?php wp_head(); ?>
|
|
</head>
|
|
|
|
<body <?php body_class(); ?>>
|
|
<?php easel_get_sidebar('above-header'); ?>
|
|
<div id="page-wrap">
|
|
<div id="page">
|
|
<header id="header">
|
|
<div class="header-info">
|
|
<h1><a href="<?php echo home_url(); ?>"><?php bloginfo('name') ?></a></h1>
|
|
<div class="description"><?php bloginfo('description') ?></div>
|
|
</div>
|
|
<?php easel_get_sidebar('header'); ?>
|
|
<div class="clear"></div>
|
|
</header>
|
|
|
|
<?php
|
|
if (!easel_themeinfo('disable_default_menubar') && function_exists('easel_menubar')) easel_menubar();
|
|
if (easel_themeinfo('enable_breadcrumbs')) easel_breadcrumbs();
|
|
easel_get_sidebar('menubar');
|
|
get_template_part('layout', 'head');
|