You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
656 B

<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<link rel="stylesheet" href="<?php echo get_stylesheet_uri() ?>" />
<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/favicon.png" />
<link rel="alternate" type="application/rss+xml" title='<?php echo get_bloginfo('name'); ?>' href='<?php bloginfo('rss2_url'); ?>' />
<title>
<?php if(is_front_page() || is_home()){
echo get_bloginfo('name');
} else{
echo wp_title(''), " &raquo; ", get_bloginfo('name');
}?>
</title>
</head>
<body <?php body_class(); ?>>
<?php wp_body_open(); ?>