Advertisement
Guest User

Untitled

a guest
Oct 3rd, 2012
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. <?php
  2. /**
  3. * @package WordPress
  4. * @subpackage Modularity
  5. */
  6. ?>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8. <!--[if lte IE 6]>
  9. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?> class="lteIE6">
  10. <![endif]-->
  11. <!--[if !IE]><!-->
  12. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  13. <!-- <![endif]-->
  14. <head profile="http://gmpg.org/xfn/11">
  15. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  16.  
  17. <title><?php wp_title(); ?> <?php bloginfo('name'); ?></title>
  18.  
  19. <!-- Styles -->
  20. <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" />
  21. <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/css/print.css" type="text/css" media="print" />
  22. <!--[if IE]><link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/library/styles/ie.css" type="text/css" media="screen, projection" /><![endif]-->
  23. <!--[if lte IE 7]><link type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/library/styles/ie-nav.css" rel="stylesheet" media="all" /><![endif]-->
  24.  
  25. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  26.  
  27. <?php if ( is_singular() && get_option( 'thread_comments' ) )
  28. wp_enqueue_script( 'comment-reply' ); ?>
  29.  
  30. <?php wp_head(); ?>
  31.  
  32. </head>
  33.  
  34. <body <?php body_class(); ?>>
  35. <div id="top">
  36.  
  37. <!-- Begin Masthead -->
  38. <div id="masthead">
  39. <h4 class="left"><a href="<?php echo home_url( '/' ); ?>" title="<?php _e( 'Home', 'modularity' ); ?>" class="logo"><?php bloginfo( 'name' ); ?></a> <span class="description"><?php bloginfo( 'description' ); ?></span></h4>
  40. </div>
  41.  
  42. <?php wp_nav_menu( array( 'theme_location' => 'primary', 'container_class' => 'main-nav' ) ); ?>
  43.  
  44. <div class="clear"></div>
  45. </div>
  46.  
  47. <div class="container">
  48. <div class="container-inner">
  49. <!-- Begin slideshow -->
  50. <!-- Begin slideshow -->
  51. <div id="slideshow">
  52. <div><img src="<?php bloginfo('stylesheet_directory'); ?>/images/slideshow/foto1.jpg" alt="<?php bloginfo('name'); ?>" /></div>
  53. <div><img src="<?php bloginfo('stylesheet_directory'); ?>/images/slideshow/foto2.jpg" alt="<?php bloginfo('name'); ?>" /></div>
  54. <div><img src="<?php bloginfo('stylesheet_directory'); ?>/images/slideshow/foto3.jpg" alt="<?php bloginfo('name'); ?>" /></div>
  55. <div><img src="<?php bloginfo('stylesheet_directory'); ?>/images/slideshow/foto4.jpg" alt="<?php bloginfo('name'); ?>" /></div>
  56. <div><img src="<?php bloginfo('stylesheet_directory'); ?>/images/slideshow/foto5.jpg" alt="<?php bloginfo('name'); ?>" /></div>
  57. <div><img src="<?php bloginfo('stylesheet_directory'); ?>/images/slideshow/foto6.jpg" alt="<?php bloginfo('name'); ?>" /></div>
  58. <div><img src="<?php bloginfo('stylesheet_directory'); ?>/images/slideshow/foto7.jpg" alt="<?php bloginfo('name'); ?>" /></div>
  59. <div><img src="<?php bloginfo('stylesheet_directory'); ?>/images/slideshow/foto8.jpg" alt="<?php bloginfo('name'); ?>" /></div>
  60. <div><img src="<?php bloginfo('stylesheet_directory'); ?>/images/slideshow/foto9.jpg" alt="<?php bloginfo('name'); ?>" /></div>
  61. <div><img src="<?php bloginfo('stylesheet_directory'); ?>/images/slideshow/foto10.jpg" alt="<?php bloginfo('name'); ?>" /></div>
  62. </div>
  63. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement