Advertisement
Guest User

Untitled

a guest
Jan 5th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Header for our theme.
  4. *
  5. * Displays all of the <head> section and everything up till <div id="main">
  6. *
  7. * @package Reddle
  8. * @since Reddle 1.0
  9. */
  10. ?><!DOCTYPE html>
  11. <html <?php language_attributes(); ?>>
  12. <head>
  13. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  14. <title><?php wp_title( '|', true, 'right' ); ?></title>
  15. <link rel="profile" href="http://gmpg.org/xfn/11" />
  16. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  17. <!--[if lt IE 9]>
  18. <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
  19. <![endif]-->
  20.  
  21. <?php wp_head(); ?>
  22. </head>
  23.  
  24. <body <?php body_class(); ?>>
  25. <h1>...</h1>
  26. <div class="theblogmenu">
  27. <ul>
  28. <li><a href="/">Home</a></li>
  29. <li><a href="/blog/parceria">Parceria</a></li>
  30. <li><a href="#">Mais</a>
  31. <ul>
  32. <li><a href="category/musica">Musica</a></li>
  33. <li><a href="category/filme">Filmes</a></li>
  34. <li><a href="category/series">Séries</a></li>
  35. </ul>
  36. </li>
  37. </ul>
  38. </div>
  39.  
  40. <div id="page" class="hfeed">
  41. <header id="masthead" role="banner">
  42. <div class="site-branding">
  43. <h1 id="site-title"><a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  44. <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
  45. </div><!-- .site-branding -->
  46.  
  47. <?php
  48. // Check to see if the header image has been removed
  49. $header_image = get_header_image();
  50. if ( ! empty( $header_image ) ) :
  51. ?>
  52. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
  53. <img id="header-image" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
  54. </a>
  55. <?php endif; ?>
  56.  
  57. <?php if ( has_nav_menu( 'primary' ) ) : ?>
  58. <nav id="access" role="navigation">
  59. <div class="skip-link assistive-text"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'reddle' ); ?>"><?php _e( 'Skip to content', 'reddle' ); ?></a></div>
  60.  
  61. <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_html_e( 'Main menu', 'reddle' ); ?></button>
  62. <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu' ) ); ?>
  63. </nav><!-- #access -->
  64. <?php endif; ?>
  65. </header><!-- #masthead -->
  66.  
  67. <div id="main">
  68.  
  69. <form style="margin-left:63%;" action="http://domain.blogspot.com/p/pesquisa.html" id="cse-search-box">
  70. <div>
  71. <input type="hidden" name="cx" value="partner-pub-1418775453207437:9611545653">
  72. <input type="hidden" name="cof" value="FORID:10" >
  73. <input type="hidden" name="ie" value="UTF-8" >
  74. <input style="width:76%; height:3em; border-radius:0.4em" type="text" name="q">
  75. <input style="height:3.3em; border-radius:0;" type="submit" name="sa" value="Search" >
  76. </div>
  77. </form>
  78.  
  79. <script type="text/javascript" src="http://www.google.com.br/coop/cse/brand?form=cse-search-box&amp;lang=en"></script>
  80.  
  81.  
  82.  
  83. <div id='social'>
  84.  
  85. <a href="https://plus.google.com/b/117775419227837076641/" target="_blank"><img alt="G+" src="https://media.domain.com/Images/G+buttton.png"></a>
  86.  
  87.  
  88. <a href='https://twitter.com/domain' target='_blink'><img alt='Twitter' src='https://2.bp.blogspot.com/-02gIgUzXCjU/WLf3NdxUqHI/AAAAAAAABtU/Q8znQAms4r0CEmig85FKnI9KZrWUyQN0ACLcB/s1600/Twitterbutton.png'/></a>
  89. <a href='https://facebook.com/suitedosdosnerds' target='_blank'><img alt='Facebook' src='https://3.bp.blogspot.com/-okpruHL9eBs/WLf3NCm9DSI/AAAAAAAABtQ/tq2ccn7gd_EdlPGcsZ8IFDRJ7glzSqeoACLcB/s1600/Facebookbutton.png'/></a>
  90.  
  91. </div>
  92. <img src="http://beta.domain.com/blog/wp-content/uploads/2017/08/cropped-suitelogo-1-1.png" style="display:inline-block;width:728px;height:90px;position:relative;left:24%;">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement