initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Silence is golden.
|
||||
*
|
||||
* @package Redux Framework
|
||||
*/
|
||||
|
||||
echo null;
|
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
/**
|
||||
* ReduxTemplates - Canvas / Theme Override
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @package redux-framework
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html <?php language_attributes(); ?>>
|
||||
<head>
|
||||
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<link rel="profile" href="https://gmpg.org/xfn/11"/>
|
||||
<?php if ( ! current_theme_supports( 'title-tag' ) ) : ?>
|
||||
<title><?php echo esc_html( wp_get_document_title() ); ?></title>
|
||||
<?php endif; ?>
|
||||
<?php
|
||||
wp_head();
|
||||
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
||||
echo '<style id="redux-template-overrides">' . ReduxTemplates\Template_Overrides::get_overrides() . '</style>';
|
||||
?>
|
||||
</head>
|
||||
<body <?php body_class(); ?>>
|
||||
<?php wp_body_open(); ?>
|
||||
<?php
|
||||
while ( have_posts() ) :
|
||||
the_post();
|
||||
the_content();
|
||||
|
||||
// If comments are open, or we have at least one comment, load up the comment template.
|
||||
if ( comments_open() || get_comments_number() ) :
|
||||
comments_template();
|
||||
endif;
|
||||
?>
|
||||
<?php endwhile; ?>
|
||||
<?php wp_footer(); ?>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* ReduxTemplates - Full Width / Contained
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @package redux-framework
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
get_header();
|
||||
|
||||
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
||||
echo '<style id="redux-template-overrides">' . ReduxTemplates\Template_Overrides::get_overrides() . '</style>';
|
||||
|
||||
while ( have_posts() ) :
|
||||
the_post();
|
||||
the_content();
|
||||
|
||||
// If comments are open, or we have at least one comment, load up the comment template.
|
||||
if ( comments_open() || get_comments_number() ) :
|
||||
comments_template();
|
||||
endif;
|
||||
endwhile; // End of the loop.
|
||||
|
||||
get_footer();
|
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* ReduxTemplates - Full Width / Stretched
|
||||
*
|
||||
* @since 4.0.0
|
||||
* @package redux-framework
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
get_header();
|
||||
|
||||
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
|
||||
echo '<style id="redux-template-overrides">' . ReduxTemplates\Template_Overrides::get_overrides() . '</style>';
|
||||
|
||||
while ( have_posts() ) :
|
||||
the_post();
|
||||
the_content();
|
||||
|
||||
// If comments are open, or we have at least one comment, load up the comment template.
|
||||
if ( comments_open() || get_comments_number() ) :
|
||||
comments_template();
|
||||
endif;
|
||||
endwhile; // End of the loop.
|
||||
|
||||
get_footer();
|
Reference in New Issue
Block a user