| 1 |
<?php |
| 2 |
/** |
| 3 |
* @package Templately |
| 4 |
* @since 3.0.0 |
| 5 |
*/ |
| 6 |
?> |
| 7 |
<!DOCTYPE html> |
| 8 |
<html <?php language_attributes(); ?>> |
| 9 |
<head> |
| 10 |
<meta charset="<?php bloginfo( 'charset' ); ?>"/> |
| 11 |
<meta name="viewport" content="width=device-width, initial-scale=1"/> |
| 12 |
<link rel="profile" href="<?php echo is_ssl() ? 'https://' : 'http://'; ?>gmpg.org/xfn/11"/> |
| 13 |
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"/> |
| 14 |
<?php wp_head(); ?> |
| 15 |
</head> |
| 16 |
<body <?php body_class(); ?>> |
| 17 |
<?php |
| 18 |
/** |
| 19 |
* WP Defaults |
| 20 |
*/ |
| 21 |
do_action( 'wp_body_open' ); |
| 22 |
|
| 23 |
/** |
| 24 |
* Header Template Actions For Templately |
| 25 |
*/ |
| 26 |
do_action( 'templately_builder_header_before' ); |
| 27 |
do_action( 'templately_builder_header' ); |
| 28 |
do_action( 'templately_builder_header_after' ); |
| 29 |
|
| 30 |
/** |
| 31 |
* Print Headers if needed. |
| 32 |
*/ |
| 33 |
templately()->theme_builder::$location_manager->do_location( 'header' ); |
| 34 |
|