This repository was archived by the owner on Jul 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
42 lines (41 loc) · 1.6 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
<?php
$dir = get_template_directory_uri();
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<link rel=”icon” href="<?php echo $dir . '/assets/icons/favicon.ico' ?>" />
<link rel=”icon” type="image/png" sizes="16x16" href="<?php echo $dir . '/assets/icons/favicon-16x16.png' ?>" />
<link rel=”icon” type="image/png" sizes="32x32" href="<?php echo $dir . '/assets/icons/favicon-32x32.png' ?>" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header class="site-header">
<h1 class="site-header__title">
<a href="/">
<img
class="site-header__title-logo"
src="<?php echo get_stylesheet_directory_uri() ?>/assets/img/header-logo.svg"
height="70"
alt="筑波大学 人形劇団NEU"
>
</a>
</h1>
<nav class="site-header__menu">
<a href="/welcome19"
class="site-header__menu-item"
style="background-image: url('<?php echo $dir . '/assets/img/menu-icon--welcome-color.svg' ?>')"
>新歓情報</a>
<a href="/about"
class="site-header__menu-item"
style="background-image: url('<?php echo $dir . '/assets/img/menu-icon--about-color.svg' ?>')"
>劇団について</a>
<a href="/culture"
class="site-header__menu-item"
style="background-image: url('<?php echo $dir . '/assets/img/menu-icon--culture-color.svg' ?>')"
>人形劇の文化</a>
</nav>
<div class="site-header__spacer"></div>
</header>
<main class="main">