| 1 |
<?php |
| 2 |
/** |
| 3 |
* Template Name: Sellkit Canvas |
| 4 |
* |
| 5 |
* @package Sellkit |
| 6 |
*/ |
| 7 |
|
| 8 |
// Exit if accessed directly. |
| 9 |
if ( ! defined( 'ABSPATH' ) ) { |
| 10 |
exit; |
| 11 |
} |
| 12 |
?> |
| 13 |
|
| 14 |
<html <?php language_attributes(); ?> class="no-js"> |
| 15 |
<head> |
| 16 |
<meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 17 |
<meta name="viewport" content="width=device-width, initial-scale=1"> |
| 18 |
<link rel="profile" href="http://gmpg.org/xfn/11"> |
| 19 |
<?php wp_head(); ?> |
| 20 |
</head> |
| 21 |
|
| 22 |
<body <?php body_class( 'sellkit' ); ?>> |
| 23 |
|
| 24 |
<?php wp_body_open(); ?> |
| 25 |
|
| 26 |
<div class="sellkit-container" > |
| 27 |
|
| 28 |
<?php |
| 29 |
while ( have_posts() ) : |
| 30 |
|
| 31 |
the_post(); |
| 32 |
the_content(); |
| 33 |
|
| 34 |
endwhile; |
| 35 |
?> |
| 36 |
</div> |
| 37 |
<?php wp_footer(); ?> |
| 38 |
</body> |
| 39 |
</html> |
| 40 |
|