26 lines
611 B
PHP
26 lines
611 B
PHP
<?php
|
|
|
|
/**
|
|
* Header template.
|
|
*
|
|
* @package ThemeStarter
|
|
*/
|
|
|
|
?>
|
|
|
|
<!doctype html>
|
|
<html <?php language_attributes(); ?>>
|
|
|
|
<head>
|
|
<meta charset="<?php bloginfo('charset'); ?>" />
|
|
<meta content="width=device-width, initial-scale=1, viewport-fit=cover, maximum-scale=5, shrink-to-fit=no" name="viewport" />
|
|
<link href="<?php echo get_template_directory_uri(); ?>/icon.png" rel="icon" type="image/png" />
|
|
<?php wp_head(); ?>
|
|
</head>
|
|
|
|
<body <?php body_class(); ?>>
|
|
<?php wp_body_open(); ?>
|
|
|
|
<?php get_template_part('template-parts/header/navigation'); ?>
|
|
|
|
<main id="content-container">
|