-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
49 lines (42 loc) · 1.97 KB
/
header.php
File metadata and controls
49 lines (42 loc) · 1.97 KB
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
49
<!doctype html>
<html <?php language_attributes() ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php is_front_page() ? bloginfo('name') : wp_title('') ?></title>
<?php wp_head() ?>
</head>
<body <?php body_class() ?>>
<div id="cnca">
<nav role="navigation">
<input type="checkbox" id="cnca-menu-toggle">
<label for="cnca-menu-toggle">
<span></span>
<span></span>
<span></span>
<span class="screen-reader-text">
<?php _e('Menu', 'cnca') ?>
</span>
</label>
<?php wp_nav_menu([
'container' => false,
'theme_location' => 'primary',
]) ?>
</nav>
<header>
<svg viewBox="0 0 1000 100" preserveAspectRatio="none" fill="currentColor">
<path opacity="0.33"
d="M473,67.3c-203.9,88.3-263.1-34-320.3,0C66,119.1,0,59.7,0,59.7V0h1000v59.7 c0,0-62.1,26.1-94.9,29.3c-32.8,3.3-62.8-12.3-75.8-22.1C806,49.6,745.3,8.7,694.9,4.7S492.4,59,473,67.3z">
</path>
<path opacity="0.66"
d="M734,67.3c-45.5,0-77.2-23.2-129.1-39.1c-28.6-8.7-150.3-10.1-254,39.1 s-91.7-34.4-149.2,0C115.7,118.3,0,39.8,0,39.8V0h1000v36.5c0,0-28.2-18.5-92.1-18.5C810.2,18.1,775.7,67.3,734,67.3z">
</path>
<path
d="M766.1,28.9c-200-57.5-266,65.5-395.1,19.5C242,1.8,242,5.4,184.8,20.6C128,35.8,132.3,44.9,89.9,52.5C28.6,63.7,0,0,0,0 h1000c0,0-9.9,40.9-83.6,48.1S829.6,47,766.1,28.9z">
</path>
</svg>
<a href="<?php echo home_url() ?>">
<img src="<?php echo get_template_directory_uri() ?>/logo.webp" width="192" height="192"
alt="<?php esc_attr_e('CNCA Logo', 'cnca') ?>">
</a>
</header>