forked from BuildTheEarth-Italia/Wordpress-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
30 lines (26 loc) · 1.28 KB
/
header.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="<?= get_bloginfo('language') ?>">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="<?= get_bloginfo('description'); ?>">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito&family=Open+Sans:wght@300;400;800&family=Raleway&family=PT+Sans:wght@700&display=swap">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css"> -->
<link rel="stylesheet" href="<?= bloginfo('stylesheet_url') ?>">
<?php wp_head(); ?>
</head>
<body class="lax <?= join(' ', get_body_class()) ?>" data-lax-bg-pos-y="0 0, 600 -80">
<nav class="navbar">
<a href="<?= get_bloginfo('wpurl') ?>" rel="home" class="brand">
<img class="logo" height="36" width="36" src="<?= get_site_icon_url(36) ?>" alt="Lugo ufficiale di <?= get_bloginfo('name') ?>" rel="home" />
<h1 class="name"><?= get_bloginfo('name') ?></h1>
</a>
<?php wp_nav_menu(
array(
'theme_location' => 'header-menu',
'container_class' => 'navItem'
)
); ?>
</nav>
<main class="root">