# sellkit/1.2.9/includes/templates/canvas.php

SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster, version 1.2.9. 40 lines.

- Page: https://pluginprobe.com/plugins/sellkit/1.2.9/code/includes/templates/canvas.php
- Raw: https://pluginprobe.com/plugins/sellkit/1.2.9/raw/includes/templates/canvas.php
- Modified: 2022-09-08T06:36:34+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/sellkit/1.2.9/code/includes/templates/canvas.php#L10-L20`.

```php
<?php
/**
 * Template Name: Sellkit Canvas
 *
 * @package Sellkit
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>

<html <?php language_attributes(); ?> class="no-js">
<head>
	<meta charset="<?php bloginfo( 'charset' ); ?>">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="http://gmpg.org/xfn/11">
	<?php wp_head(); ?>
</head>

<body <?php body_class( 'sellkit' ); ?>>

	<?php wp_body_open(); ?>

	<div class="sellkit-container" >

	<?php
	while ( have_posts() ) :

		the_post();
		the_content();

	endwhile;
	?>
	</div>
	<?php wp_footer(); ?>
</body>
</html>

```
