File: //home/karalev/www/wp-content/plugins/woolentor-addons/wl-woo-templates/page/woolentor_canvas.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<?php if ( ! current_theme_supports( 'title-tag' ) ) : ?>
<title><?php echo wp_get_document_title(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></title>
<?php endif; ?>
<?php wp_head(); ?>
<?php
// Keep the following line after `wp_head()` call, to ensure it's not overridden by another templates.
?>
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
</head>
<body <?php body_class(); ?>>
<?php $width = apply_filters( 'woolentor_builder_template_width', 1200 ); ?>
<div class="woolentor-template-container" style="margin:0 auto; max-width:<?php echo $width ? esc_attr($width).'px; padding: 0 15px;' : '100%;'; ?>">
<?php
while ( have_posts() ) {
the_post();
do_action('woolentor/builder/content');
}
?>
</div>
<?php wp_footer(); ?>
</body>
</html>