-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
32 lines (26 loc) · 809 Bytes
/
header.php
File metadata and controls
32 lines (26 loc) · 809 Bytes
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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<?php wp_head(); ?>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
</head>
<body <?php body_class(); ?>>
<!-- Site -->
<div id="site">
<!-- Header -->
<header>
<div>
<?php if ( has_custom_logo() ): ?>
<?php the_custom_logo(); ?>
<?php else: ?>
<a class="logo" href="<?php echo home_url(); ?>" title="Zur Startseite">
<?php echo get_bloginfo('name'); ?>
</a>
<?php endif; ?>
<div>
<?php wp_nav_menu( array( 'theme_location' => 'main', 'container' => false ) ); ?>
</div>
</div>
</header>
<!-- Content -->
<main id="content">