-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
48 lines (46 loc) · 1.66 KB
/
header.php
File metadata and controls
48 lines (46 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<title><?php wp_title(' | ', true, 'right'); ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href = "<?php bloginfo('stylesheet_url'); ?>" rel = "stylesheet">
<?php wp_head(); ?>
</head>
<body>
<div id="dot-matrix"></div>
<div class="spec">
<header id="myCarousel" class="carousel slide" data-ride="carousel" data-interval="3000" data-pause="false">
<div class="carousel-inner">
<div class="item active">
<div class="fill" style="background-image:url('<?php bloginfo('template_directory'); ?>/static/red.png');"></div>
</div>
<div class="item">
<div class="fill" style="background-image:url('<?php bloginfo('template_directory'); ?>/static/green.png');"></div>
</div>
<div class="item">
<div class="fill" style="background-image:url('<?php bloginfo('template_directory'); ?>/static/blue.png');"></div>
</div>
<div class="item">
<div class="fill" style="background-image:url('<?php bloginfo('template_directory'); ?>/static/orange.png');"></div>
</div>
</div>
</header>
</div>
<div class = "container">
<div class = "container">
<div class="navbar-header">
<h2><img class="img-responsive2" src="logo.address"> <?php bloginfo('name'); ?></h2>
</div>
<div class = "navbar-collapse">
<?php
wp_nav_menu( array(
'menu' => 'primary',
'theme_location' => 'primary',
'depth' => 2,
'menu_class' => 'nav navbar-nav navbar-right',
'fallback_cb' => 'wp_bootstrap_navwalker::fallback',
'walker' => new wp_bootstrap_navwalker())
);
?>
</div>
</div>