PluginProbe
BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites / 2.6.1
BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites v2.6.1
4.1.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.1.2 2.5.0 2.5.3 2.6.1 All 38 releases
blockspare / inc / page-templates / templates / full-width.php

full-width.php in BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites 2.6.1, at inc/page-templates/templates/full-width.php

30 lines 613 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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