1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php /** * Template canvas file to render the current 'wp_template'. * * @package gutenberg */
?> <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <?php wp_head(); ?> </head>
<body <?php body_class(); ?>> <?php wp_body_open(); ?>
<?php gutenberg_render_the_template(); ?>
<?php wp_footer(); ?> </body> </html>
|