mirror of
https://github.com/WordPress/WordPress.git
synced 2024-10-30 15:31:04 +01:00
7a04eb9b86
The viewport meta should include `initial-scale=1.0` to ensure that high DPI/mobile display works as expected. Includes standardizing on `1.0` vs. `1` for consistency. References: * [https://css-tricks.com/probably-use-initial-scale1/ CSS-Tricks: Probably Use initial-scale=1] * [https://www.sitepoint.com/community/t/is-it-necessary-to-include-initial-scale-1-0-in-the-meta-viewport-tag/455119 SitePoint Forums: Is it necessary to include initial-scale=1.0 in the meta viewport tag?] Props dhruvang21, sabernhardt, kkmuffme, mukesh27, swissspidy, SergeyBiryukov. See #61988. Built from https://develop.svn.wordpress.org/trunk@59026 git-svn-id: http://core.svn.wordpress.org/trunk@58422 1a063a9b-81f0-0310-95a4-ce76da25c4cd
59 lines
1.6 KiB
PHP
59 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* The header for our theme
|
|
*
|
|
* This is the template that displays all of the <head> section and everything up until <div id="content">
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Seventeen
|
|
* @since Twenty Seventeen 1.0
|
|
* @version 1.0
|
|
*/
|
|
|
|
?><!DOCTYPE html>
|
|
<html <?php language_attributes(); ?> class="no-js no-svg">
|
|
<head>
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="profile" href="https://gmpg.org/xfn/11">
|
|
|
|
<?php wp_head(); ?>
|
|
</head>
|
|
|
|
<body <?php body_class(); ?>>
|
|
<?php wp_body_open(); ?>
|
|
<div id="page" class="site">
|
|
<a class="skip-link screen-reader-text" href="#content">
|
|
<?php
|
|
/* translators: Hidden accessibility text. */
|
|
_e( 'Skip to content', 'twentyseventeen' );
|
|
?>
|
|
</a>
|
|
|
|
<header id="masthead" class="site-header">
|
|
|
|
<?php get_template_part( 'template-parts/header/header', 'image' ); ?>
|
|
|
|
<?php if ( has_nav_menu( 'top' ) ) : ?>
|
|
<div class="navigation-top">
|
|
<div class="wrap">
|
|
<?php get_template_part( 'template-parts/navigation/navigation', 'top' ); ?>
|
|
</div><!-- .wrap -->
|
|
</div><!-- .navigation-top -->
|
|
<?php endif; ?>
|
|
|
|
</header><!-- #masthead -->
|
|
|
|
<?php
|
|
if ( twentyseventeen_should_show_featured_image() ) :
|
|
echo '<div class="single-featured-image-header">';
|
|
echo get_the_post_thumbnail( get_queried_object_id(), 'twentyseventeen-featured-image' );
|
|
echo '</div><!-- .single-featured-image-header -->';
|
|
endif;
|
|
?>
|
|
|
|
<div class="site-content-contain">
|
|
<div id="content" class="site-content">
|