template-surecart-blank.php
2 years ago
template-surecart-collection.php
1 year ago
template-surecart-dashboard.php
1 year ago
template-surecart-product.php
1 year ago
template-surecart-blank.php
30 lines
| 1 | <?php |
| 2 | /* |
| 3 | Template Name: SureCart |
| 4 | */ |
| 5 | ?> |
| 6 | <!DOCTYPE html> |
| 7 | <html <?php language_attributes(); ?>> |
| 8 | <head> |
| 9 | <meta charset="<?php bloginfo( 'charset' ); ?>" /> |
| 10 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 11 | <?php wp_head(); ?> |
| 12 | </head> |
| 13 | |
| 14 | <body <?php body_class(); ?>> |
| 15 | |
| 16 | <?php wp_body_open(); ?> |
| 17 | |
| 18 | <?php do_action( 'surecart_template_blank_body_open' ); ?> |
| 19 | |
| 20 | <?php |
| 21 | while ( have_posts() ) : |
| 22 | the_post(); |
| 23 | the_content(); |
| 24 | endwhile; |
| 25 | ?> |
| 26 | |
| 27 | <?php wp_footer(); ?> |
| 28 | </body> |
| 29 | </html> |
| 30 |