<?php/** * Template canvas file to render the current 'wp_template'. * * @package WordPress *//* * Get the template HTML. * This needs to run before <head> so that blocks can add scripts and styles in wp_head(). */$template_html=get_the_block_template_html();?><!DOCTYPE html><html<?phplanguage_attributes();?>><head><metacharset="<?phpbloginfo('charset');?>"/><?phpwp_head();?></head><body<?phpbody_class();?>><?phpwp_body_open();?><?phpecho$template_html;// phpcs:ignore WordPress.Security.EscapeOutput ?><?phpwp_footer();?></body></html>