| 1 |
<?php |
| 2 |
/** |
| 3 |
* Master Addons Popup Editor Template |
| 4 |
* |
| 5 |
* @package MasterAddons |
| 6 |
* @subpackage PopupBuilder |
| 7 |
*/ |
| 8 |
|
| 9 |
if (!defined('ABSPATH')) { |
| 10 |
exit; // Exit if accessed directly. |
| 11 |
} |
| 12 |
|
| 13 |
// Elementor Instance |
| 14 |
$elementor_plugin = \Elementor\Plugin::$instance; |
| 15 |
|
| 16 |
?> |
| 17 |
|
| 18 |
<!DOCTYPE html> |
| 19 |
<html <?php language_attributes(); ?>> |
| 20 |
<head> |
| 21 |
<meta charset="<?php bloginfo('charset'); ?>"> |
| 22 |
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /> |
| 23 |
<?php if (!current_theme_supports('title-tag')) : ?> |
| 24 |
<title><?php echo esc_html(wp_get_document_title()); ?></title> |
| 25 |
<?php endif; ?> |
| 26 |
<?php wp_head(); ?> |
| 27 |
</head> |
| 28 |
|
| 29 |
<body <?php body_class(); ?>> |
| 30 |
|
| 31 |
<div class="jltma-template-popup"> |
| 32 |
<div class="jltma-template-popup-inner"> |
| 33 |
|
| 34 |
<!-- Popup Overlay & Close Button --> |
| 35 |
<div class="jltma-popup-overlay"></div> |
| 36 |
|
| 37 |
<!-- Template Container --> |
| 38 |
<div class="jltma-popup-container"> |
| 39 |
|
| 40 |
<!-- Popup Close Button --> |
| 41 |
<div class="jltma-popup-close-btn"><i class="eicon-close"></i></div> |
| 42 |
|
| 43 |
<div class="jltma-popup-container-inner"> |
| 44 |
<?php $elementor_plugin->modules_manager->get_modules('page-templates')->print_content(); ?> |
| 45 |
</div> |
| 46 |
|
| 47 |
</div> |
| 48 |
|
| 49 |
</div> |
| 50 |
</div> |
| 51 |
|
| 52 |
<?php wp_footer(); ?> |
| 53 |
|
| 54 |
</body> |
| 55 |
</html> |
| 56 |
|