-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathheader-canvas.php
28 lines (27 loc) · 897 Bytes
/
header-canvas.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
<?php
/**
* The header for our theme.
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @see https://developer.wordpress.org/themes/basics/template-files/
*/
?><!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="https://gmpg.org/xfn/11">
<?php wp_head(); ?>
</head>
<body <?php body_class( 'brisko-font brisko-font-style' ); ?>>
<?php wp_body_open(); ?>
<?php do_action( 'brisko_after_body_open' ); ?>
<div id="page" class="site">
<a class="skip-link screen-reader-text" href="#primary">
<?php esc_html_e( 'Skip to content', 'brisko' ); ?>
</a>
<?php brisko_header()->header_image(); ?>
<?php if ( is_front_page() && is_home() ) {
brisko_homepage_header();
} ?>