[44] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
---|
| 2 | <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
|
---|
| 3 |
|
---|
| 4 | <head profile="http://gmpg.org/xfn/11">
|
---|
| 5 | <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
|
---|
| 6 | <title><?php wp_title('--',true,'right'); ?> <?php bloginfo('name');?></title>
|
---|
| 7 |
|
---|
| 8 | <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
|
---|
| 9 | <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
|
---|
| 10 | <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/switch.js"></script>
|
---|
| 11 |
|
---|
| 12 | <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/style.css" type="text/css" media="screen"/>
|
---|
| 13 | <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/blue.css" type="text/css" media="screen" title="default"/>
|
---|
| 14 | <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/pink.css" type="text/css" media="screen" title="pink"/>
|
---|
| 15 | <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/green.css" type="text/css" media="screen" title="green"/>
|
---|
| 16 | <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/purple.css" type="text/css" media="screen" title="purple"/>
|
---|
| 17 | <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/red.css" type="text/css" media="screen" title="red"/>
|
---|
| 18 |
|
---|
| 19 | <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
|
---|
| 20 | <?php wp_head(); ?>
|
---|
| 21 | </head>
|
---|
| 22 | <body>
|
---|
| 23 |
|
---|
| 24 | <!--#wrapper:start-->
|
---|
| 25 | <div id="wrapper">
|
---|
| 26 |
|
---|
| 27 | <!--#header:start-->
|
---|
| 28 | <div id="header">
|
---|
| 29 | <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
|
---|
| 30 |
|
---|
| 31 | <!--#navigation:start-->
|
---|
| 32 | <div id="navigation">
|
---|
| 33 | <ul>
|
---|
| 34 | <li><a href="<?php echo get_option('home'); ?>/" class="<?php echo (is_home() ? 'current' : ''); ?>">Home</a></li>
|
---|
| 35 | <?php wp_list_pages('title_li='); ?>
|
---|
| 36 | </ul>
|
---|
| 37 | </div>
|
---|
| 38 | <!--#navigation:end-->
|
---|
| 39 | <!--#search:start-->
|
---|
| 40 | <div id="search">
|
---|
| 41 | <form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
|
---|
| 42 | <input type="text" value="<?php the_search_query(); ?>" name="s" id="s" />
|
---|
| 43 | <input type="submit" id="searchsubmit" value="<?php _e('cerca'); ?>" />
|
---|
| 44 |
|
---|
| 45 | </form>
|
---|
| 46 | </div>
|
---|
| 47 | <!--#search:end-->
|
---|
| 48 | </div>
|
---|
| 49 | <!--#header:end-->
|
---|