| 1 |
<?php |
| 2 |
|
| 3 |
namespace King_Addons; |
| 4 |
|
| 5 |
use Elementor\Plugin; |
| 6 |
|
| 7 |
if (!defined('ABSPATH')) { |
| 8 |
exit; |
| 9 |
} |
| 10 |
|
| 11 |
?> |
| 12 |
<!DOCTYPE html> |
| 13 |
<html <?php language_attributes(); ?>> |
| 14 |
<head> |
| 15 |
<meta charset="<?php bloginfo('charset'); ?>"> |
| 16 |
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover"/> |
| 17 |
<?php if (!current_theme_supports('title-tag')) : ?> |
| 18 |
<title><?php echo esc_html(wp_get_document_title()); ?></title> |
| 19 |
<?php endif; ?> |
| 20 |
<?php wp_head(); ?> |
| 21 |
</head> |
| 22 |
<body <?php body_class(); ?>> |
| 23 |
<div class="king-addons-pb-template-popup"> |
| 24 |
<div class="king-addons-pb-template-popup-inner"> |
| 25 |
<div class="king-addons-pb-popup-overlay"></div> |
| 26 |
<div class="king-addons-pb-popup-container"> |
| 27 |
<div class="king-addons-pb-popup-close-btn"><i class="eicon-close"></i></div> |
| 28 |
<div class="king-addons-pb-popup-container-inner"> |
| 29 |
<?php (Plugin::$instance)->modules_manager->get_modules('page-templates')->print_content(); ?> |
| 30 |
</div> |
| 31 |
</div> |
| 32 |
</div> |
| 33 |
</div> |
| 34 |
<?php wp_footer(); ?> |
| 35 |
</body> |
| 36 |
</html> |
| 37 |
|