# gutenberg/7.4.0/lib/template-canvas.php

Gutenberg, version 7.4.0. 24 lines.

- Page: https://pluginprobe.com/plugins/gutenberg/7.4.0/code/lib/template-canvas.php
- Raw: https://pluginprobe.com/plugins/gutenberg/7.4.0/raw/lib/template-canvas.php
- Modified: 2019-10-30T15:26:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gutenberg/7.4.0/code/lib/template-canvas.php#L10-L20`.

```php
<?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>

```
