-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
48 lines (43 loc) · 1.84 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Mis recetas de cocina casera">
<meta name="keywords" content="recetas, cocina casera, gastronomía">
<link rel="shortcut icon" href="<?php echo get_stylesheet_directory_uri(); ?>/huevo-frito.png" type="image/x-icon">
<script src="https://cdn.tailwindcss.com"></script>
<?php wp_head(); ?>
</head>
<body>
<div class="container mx-auto px-10">
<header class="flex justify-center my-5">
<a href="<?php echo get_home_url(); ?>">
<img class="h-16 sm:h-28" src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo.png" alt="">
</a>
</header>
</div>
<!--<div class="bg-gray-300 py-2 sm:py-4 mb-10">
<nav class="container mx-auto px-10 text-center text-lg">
<span class="text-gray-400">Inicio</span>
<span class="text-gray-500 mx-2 text-base">|</span>
<a class="hover:underline" href="recetas.html">Recetas</a>
<span class="text-gray-500 mx-2 text-base">|</span>
<a class="hover:underline" href="contactar.html">Contactar</a>
</nav>
</div>-->
<div class="bg-gray-300 py-2 sm:py-4 mb-10">
<?php
wp_nav_menu(
array(
'theme_location' => 'menu-1',
'menu_id' => 'primary-menu',
'container' => 'nav',
'menu_class' => 'flex justify-center',
'container_class' => 'container mx-auto px-10 text-center text-lg',
'after' => '<span class="mx-2 text-gray-400">|</span>'
)
);
?>
</div>