first commit

This commit is contained in:
User A0264400
2026-04-01 23:20:16 +03:00
commit a766acdc90
23071 changed files with 4933189 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?php
/**
* Template Name: Gutentor Canvas
*
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
*
* @package Gutentor
*/
?><!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 wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php
do_action( 'wp_body_open' );
/* Start the Loop */
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();
}
endwhile; // End of the loop.
wp_footer();
?>
</body>
</html>

View File

@@ -0,0 +1,44 @@
<?php
/**
* Template Name: Gutentor Full Width
*
* @link https://developer.wordpress.org/themes/template-files-section/page-template-files/
*
* @package Gutentor
*/
if ( gutentor_is_fse_template() ) {
?><!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 wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php
} else {
get_header();
}
do_action( 'gutentor_template_before_loop' );
/* Start the Loop */
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();
}
endwhile; // End of the loop.
do_action( 'gutentor_template_after_loop' );
if ( gutentor_is_fse_template() ) {
wp_footer();
?>
</body>
</html>
<?php
} else {
get_footer();
}