Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.21 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying the header
  4. *
  5. * Displays all of the head element and everything up until the "site-content" div.
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty_Sixteen
  9. * @since Twenty Sixteen 1.0
  10. */
  11.  
  12. ?><!DOCTYPE html>
  13. <html <?php language_attributes(); ?> class="no-js">
  14. <head>
  15. <meta charset="<?php bloginfo( 'charset' ); ?>">
  16. <meta name="robots" content="noarchive">
  17. <meta name="viewport" content="width=device-width, initial-scale=1">
  18. <meta name="description" content="Opis"/>
  19. <link rel="profile" href="https://gmpg.org/xfn/11">
  20. <?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
  21. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  22. <?php endif; ?>
  23. <?php wp_head(); ?>
  24.  
  25. <!-- Global site tag (gtag.js) - Google Analytics -->
  26. <script async src="https://www.googletagmanager.com/gtag/js?id=UA-1153512625-1"></script>
  27. <script>
  28. window.dataLayer = window.dataLayer || [];
  29. function gtag(){dataLayer.push(arguments);}
  30. gtag('js', new Date());
  31.  
  32. gtag('config', 'UA-1153512625-1');
  33. </script>
  34.  
  35.  
  36. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  37. <script type="text/javascript" src="https://strona.pl/jquery.sticky.js"></script>
  38. <script>
  39. jQuery(document).ready(function(){
  40. jQuery("#sticker").sticky({ topSpacing: 0 });
  41. });
  42. </script>
  43. <script>
  44. jQuery(document).ready(function(){
  45. jQuery("#sticker2").sticky({ topSpacing: 0 });
  46. });
  47. </script>
  48.  
  49.  
  50.  
  51. <meta property="og:url" content="http://www.nytimes.com/2015/02/19/arts/international/when-great-minds-dont-think-alike.html" />
  52. <meta property="og:type" content="article" />
  53. <meta property="og:title" content="When Great Minds Don’t Think Alike" />
  54. <meta property="og:description" content="How much does culture influence creative thinking?" />
  55. <meta property="og:image" content="<?php get_featured_image( $post_id ) ?>" />
  56.  
  57.  
  58. </head>
  59.  
  60. <body <?php body_class(); ?>>
  61. <div id="page" class="site">
  62. <div class="site-inner">
  63. <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentysixteen' ); ?></a>
  64.  
  65. <header id="masthead" class="site-header" role="banner">
  66. <div class="site-header-main">
  67.  
  68. <?php if ( has_nav_menu( 'primary' ) || has_nav_menu( 'social' ) ) : ?>
  69.  
  70. <div class="stronalogo"><a href="https://strona.pl"><img src="https://strona.pl/stronalogo.png"></a></img></div>
  71.  
  72. <div class="stronalogomini"><a href="https://strona.pl"><img src="https://strona.pl/stronalogo.png"></a></img></div>
  73.  
  74. <div class="menumini">
  75. <ul>
  76. <li><a href="https://strona.pl/aktualnosci">a</a></li>
  77. <li><a href="https://strona.pl/recenzje">a</a></li>
  78. <li><a href="https://strona.pl/artykuly">a</a></li>
  79. <li><a href="https://strona.pl/telewizja">a</a></li>
  80. <li><a href="https://strona.pl/kontakt">a</a></li>
  81. <li><a href="https://strona.pl/forum">a</a></li>
  82. </ul>
  83. </div>
  84.  
  85.  
  86. <div id="site-header-menu" class="site-header-menu">
  87. <?php if ( has_nav_menu( 'primary' ) ) : ?>
  88. <nav id="site-navigation" class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Primary Menu', 'twentysixteen' ); ?>">
  89. <?php
  90. wp_nav_menu( array(
  91. 'theme_location' => 'primary',
  92. 'menu_class' => 'primary-menu',
  93. ) );
  94. ?>
  95. </nav><!-- .main-navigation -->
  96. <?php endif; ?>
  97.  
  98. <?php if ( has_nav_menu( 'social' ) ) : ?>
  99. <nav id="social-navigation" class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Social Links Menu', 'twentysixteen' ); ?>">
  100. <?php
  101. wp_nav_menu( array(
  102. 'theme_location' => 'social',
  103. 'menu_class' => 'social-links-menu',
  104. 'depth' => 1,
  105. 'link_before' => '<span class="screen-reader-text">',
  106. 'link_after' => '</span>',
  107. ) );
  108. ?>
  109. </nav><!-- .social-navigation -->
  110. <?php endif; ?>
  111. </div><!-- .site-header-menu -->
  112. <?php endif; ?>
  113. </div><!-- .site-header-main -->
  114.  
  115.  
  116. </header><!-- .site-header -->
  117.  
  118. <div id="content" class="site-content">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement