-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
executable file
·51 lines (45 loc) · 1.35 KB
/
Copy pathheader.php
File metadata and controls
executable file
·51 lines (45 loc) · 1.35 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
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta -->
<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="Vick's WordPress Template">
<meta name="author" content="https://vickrumahuja.com">
<?php
wp_head()
?>
</head>
<body>
<div class="container-fluid bg-light">
<div class="container">
<header class="d-flex flex-wrap justify-content-center py-3 mb-4">
<?php
if (function_exists('the_custom_logo')) {
$custom_logo_id = get_theme_mod('custom_logo');
$logo = wp_get_attachment_image_src($custom_logo_id);
}
?>
<a href="<?php echo site_url(); ?>" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none">
<img class="img-fluid logo spin" src="<?php echo $logo[0]; ?>" alt="VW" >
<span class="fs-4"> Das Auto</span>
</a>
<?php
wp_nav_menu (
array(
'menu' => 'primary',
'container' => '',
'theme_location' => 'primary',
'items_wrap' => '<ul id="" class="nav nav-pills">%3$s</ul>'
)
);
?>
</header>
</div>
</div>
<div class="container">
<div class="px-4 text-center border-bottom mb-5 h1-fade-in fadeIn">
<h1 class="display-4 fw-bold"><?php the_title(); ?></h1>
</div>
</div>