-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
22 lines (20 loc) · 861 Bytes
/
header.php
File metadata and controls
22 lines (20 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html <?= language_attributes( ); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" type="text/css" href="<?= get_template_directory_uri(); ?>/assets/css/<?= console_wp_set_color_scheme(); ?>">
<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
<?php wp_head(); ?>
</head>
<body>
<div class="container">
<header>
<div class="menu">
<ul>
<li><a href="<?= bloginfo( 'url' ); ?>">/</a></li>
<?php get_template_part('template-parts/menu', 'main'); ?>
</ul>
</div>
</header>