| Current File : /home/digitaw/www/wp-content/plugins/templately/views/templates/templately-gutenberg-template.php |
<?php
/**
* Template name: Templately gutenberg template
* @package Templately
* @since 3.0.0
**/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="profile" href="<?php echo is_ssl() ? 'https://' : 'http://'; ?>gmpg.org/xfn/11"/>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"/>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php
/**
* WP Defaults
*/
do_action( 'wp_body_open' );
/**
* Header Template Actions For Templately
*/
do_action( 'templately_builder_header_before' );
do_action( 'templately_builder_header' );
/**
* Print Headers if needed.
*/
templately()->theme_builder::$location_manager->do_location( 'header' );
do_action( 'templately_builder_header_after' );
?>
<main class="eb-fullwidth-container">
<div class="eb-fullwidth-content-wrapper">
<?php templately()->theme_builder::$page_template_module->print();?>
</div>
</main>
<?php
/**
* Print Footers if needed.
*/
templately()->theme_builder::$location_manager->do_location( 'footer' );
/**
* Footer Template Actions For Templately
*/
do_action( 'templately_builder_footer_before' );
do_action( 'templately_builder_footer' );
wp_footer();
do_action( 'templately_builder_footer_after' );
?>
</body>
</html>