57 lines
2.3 KiB
PHP
57 lines
2.3 KiB
PHP
|
<!DOCTYPE html>
|
||
|
<!--[if IE 6]>
|
||
|
<html id="ie6" <?php language_attributes(); ?>>
|
||
|
<![endif]-->
|
||
|
<!--[if IE 7]>
|
||
|
<html id="ie7" <?php language_attributes(); ?>>
|
||
|
<![endif]-->
|
||
|
<!--[if IE 8]>
|
||
|
<html id="ie8" <?php language_attributes(); ?>>
|
||
|
<![endif]-->
|
||
|
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
|
||
|
<html <?php language_attributes(); ?>>
|
||
|
<!--<![endif]-->
|
||
|
<head>
|
||
|
<title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title>
|
||
|
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
|
||
|
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||
|
|
||
|
<!-- Blueprint CSS -->
|
||
|
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/blueprint/screen.css" type="text/css" media="screen, projection">
|
||
|
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/blueprint/print.css" type="text/css" media="print">
|
||
|
<!--[if lt IE 8]>
|
||
|
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/blueprint/ie.css" type="text/css" media="screen, projection">
|
||
|
<![endif]-->
|
||
|
|
||
|
<!-- Theme CSS -->
|
||
|
<link href='http://fonts.googleapis.com/css?family=Ubuntu:300,400,500' rel='stylesheet' type='text/css'>
|
||
|
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
|
||
|
|
||
|
<!-- Feed autodiscovery -->
|
||
|
<link rel="alternate" type="application/rss+xml" title="<?php htmlentities(bloginfo('name')); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
|
||
|
<link rel="alternate" type="application/atom+xml" title="<?php htmlentities(bloginfo('name')); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
|
||
|
|
||
|
<?php wp_enqueue_script("jquery"); ?>
|
||
|
<?php wp_head(); ?>
|
||
|
<script src="<?php echo get_template_directory_uri(); ?>/js/jquery.cycle.all.js" type="text/javascript"></script>
|
||
|
<script src="<?php echo get_template_directory_uri(); ?>/js/scripts.js" type="text/javascript"></script>
|
||
|
|
||
|
</head>
|
||
|
<body <?php body_class(); ?>>
|
||
|
|
||
|
<div id="page" class="container">
|
||
|
<div id="rss-lector">
|
||
|
<?php get_template_part('rss-lector'); ?>
|
||
|
</div>
|
||
|
<div id="header" role="banner" class="span-24 last">
|
||
|
<div id="headerimg">
|
||
|
<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
|
||
|
<div class="description"><?php bloginfo('description'); ?></div>
|
||
|
</div><!-- id="headerimg" -->
|
||
|
<div id = "search-form">
|
||
|
<?php get_search_form( true ); ?>
|
||
|
</div>
|
||
|
</div><!-- id="header" -->
|
||
|
<?php get_sidebar(); ?>
|
||
|
|