25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

54 satır
1.6 KiB

  1. <?php
  2. /**
  3. * The header for our theme
  4. *
  5. * This is the template that displays all of the <head> section and everything up until <div id="content">
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package WordPress
  10. * @subpackage Twenty_Seventeen
  11. * @since 1.0
  12. * @version 1.0
  13. */
  14. ?><!DOCTYPE html>
  15. <html <?php language_attributes(); ?> class="no-js no-svg">
  16. <head>
  17. <meta charset="<?php bloginfo( 'charset' ); ?>">
  18. <meta name="viewport" content="width=device-width, initial-scale=1">
  19. <link rel="profile" href="http://gmpg.org/xfn/11">
  20. <?php wp_head(); ?>
  21. </head>
  22. <body <?php body_class(); ?>>
  23. <div id="page" class="site">
  24. <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentyseventeen' ); ?></a>
  25. <header id="masthead" class="site-header" role="banner">
  26. <?php get_template_part( 'template-parts/header/header', 'image' ); ?>
  27. <?php if ( has_nav_menu( 'top' ) ) : ?>
  28. <div class="navigation-top">
  29. <div class="wrap">
  30. <?php get_template_part( 'template-parts/navigation/navigation', 'top' ); ?>
  31. </div><!-- .wrap -->
  32. </div><!-- .navigation-top -->
  33. <?php endif; ?>
  34. </header><!-- #masthead -->
  35. <?php
  36. // If a regular post or page, and not the front page, show the featured image.
  37. if ( has_post_thumbnail() && ( is_single() || ( is_page() && ! twentyseventeen_is_frontpage() ) ) ) :
  38. echo '<div class="single-featured-image-header">';
  39. the_post_thumbnail( 'twentyseventeen-featured-image' );
  40. echo '</div><!-- .single-featured-image-header -->';
  41. endif;
  42. ?>
  43. <div class="site-content-contain">
  44. <div id="content" class="site-content">