| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
exit; |
| 4 |
} |
| 5 |
?> |
| 6 |
<!DOCTYPE html> |
| 7 |
<html <?php language_attributes(); ?>> |
| 8 |
<head> |
| 9 |
<meta charset="<?php echo esc_attr( get_bloginfo( 'charset' ) ); ?>"> |
| 10 |
<meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 11 |
<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>" /> |
| 12 |
<link rel="profile" href="<?php echo esc_url( 'http://gmpg.org/xfn/11' ); ?>" /> |
| 13 |
|
| 14 |
<?php if ( ! current_theme_supports( 'title-tag' ) ) : ?> |
| 15 |
<title><?php echo esc_html( wp_get_document_title() ); ?></title> |
| 16 |
<?php endif; ?> |
| 17 |
|
| 18 |
<?php wp_head(); ?> |
| 19 |
</head> |
| 20 |
<body <?php body_class(); ?>> |
| 21 |
<?php |
| 22 |
wp_body_open(); |
| 23 |
|
| 24 |
do_action( 'ablocks/templates/theme_builder/header' ); |
| 25 |
|