-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader-homepage.php
More file actions
40 lines (35 loc) · 1.02 KB
/
Copy pathheader-homepage.php
File metadata and controls
40 lines (35 loc) · 1.02 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php
if ( function_exists( 'wp_body_open' ) ) {
wp_body_open();
} else {
do_action( 'wp_body_open' );
}
?>
<?php materialis_print_skip_link(); ?>
<div id="page-top" class="header-top homepage">
<?php materialis_print_header_top_bar(); ?>
<?php materialis_get_navigation(); ?>
</div>
<div id="page" class="site">
<div class="header-wrapper">
<div <?php echo materialis_header_background_atts() ?>>
<?php do_action( 'materialis_before_header_background' ); ?>
<?php materialis_print_video_container(); ?>
<?php materialis_print_front_page_header_content(); ?>
<?php
materialis_print_header_separator();
?>
<?php
do_action( 'materialis_after_header_content' );
?>
</div>
</div>