PluginProbe
Elementor Website Builder – more than just a page builder / 3.2.3
Elementor Website Builder – more than just a page builder v3.2.3
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / core / app / view.php

view.php in Elementor Website Builder – more than just a page builder 3.2.3, at core/app/view.php

30 lines 662 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace Elementor\Core\App;
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit; // Exit if accessed directly.
6 }
7
8 /**
9 * @var App $this
10 */
11
12
13 $theme_class = 'dark' === $this->get_elementor_ui_theme_preference() ? 'eps-theme-dark' : '';
14
15 ?>
16 <!DOCTYPE html>
17 <html <?php language_attributes(); ?>>
18 <head>
19 <meta charset="utf-8" />
20 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
21 <title><?php echo __( 'Elementor', 'elementor' ) . ' ... '; ?></title>
22 <base target="_parent">
23 <?php wp_print_styles(); ?>
24 </head>
25 <body class="<?php echo $theme_class; ?>">
26 <div id="e-app"></div>
27 <?php wp_print_footer_scripts(); ?>
28 </body>
29 </html>
30