| 1 |
<?php |
| 2 |
if (!defined('ABSPATH')) { |
| 3 |
exit; // Exit if accessed directly. |
| 4 |
} |
| 5 |
|
| 6 |
?> |
| 7 |
<!DOCTYPE html> |
| 8 |
<html <?php language_attributes(); ?>> |
| 9 |
<head> |
| 10 |
<meta charset="<?php bloginfo('charset'); ?>"> |
| 11 |
<?php if (!current_theme_supports('title-tag')): ?> |
| 12 |
<title><?php echo wp_get_document_title(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></title> |
| 13 |
<?php |
| 14 |
endif; ?> |
| 15 |
<?php wp_head(); ?> |
| 16 |
|
| 17 |
</head> |
| 18 |
<body <?php body_class('blockspare-blank-canvas'); ?>> |
| 19 |
<?php |
| 20 |
get_header(); ?> |
| 21 |
<div class="blockspare-page-section"> |
| 22 |
<?php the_content(); ?> |
| 23 |
</div> |
| 24 |
<?php |
| 25 |
get_footer(); |
| 26 |
wp_footer(); |
| 27 |
?> |
| 28 |
</body> |
| 29 |
</html> |
| 30 |
|