%k25u25%fgd5n!
<?php
if( isset( $enable_404message ) && $enable_404message == 1 ) {
$class = $notfound_style;
$class .= ( isset( $notfound_darkbg ) && ( $notfound_darkbg == 1 ) ) ? " wdt-dark-bg" :"";
?>
<div class="wrapper <?php echo esc_attr( $class );?>">
<div class="container">
<div class="center-content-wrapper">
<div class="center-content">
<?php if( class_exists( '\Elementor\Plugin' ) ) {
$elementor_instance = Elementor\Plugin::instance();
if( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) {
$css_file = new \Elementor\Core\Files\CSS\Post( $page_id );
$css_file->enqueue();
}
if( !empty( $elementor_instance ) ) {
echo windoor_html_output($elementor_instance->frontend->get_builder_content_for_display( $page_id ));
}
} else {
$content = get_the_content( '', false, $page_id );
echo do_shortcode( $content );
} ?>
</div>
</div>
</div>
</div><?php
}
?>