| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/page-templates.tar |
template-pagebuilder-full-width.php 0000666 00000001153 15113065366 0013440 0 ustar 00 <?php
/**
* Template Name: Page Builder Full Width
*
* The template for the page builder full-width.
*
* It contains header, footer and 100% content width.
*
* @package Hestia
* @since Hestia 1.1.24
* @author Themeisle
*/
get_header(); ?>
<?php do_action( 'hestia_page_builder_full_before_content' ); ?>
<div class="<?php echo hestia_layout(); ?>">
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'pagebuilder' );
endwhile;
endif;
?>
</div>
<?php do_action( 'hestia_page_builder_full_after_content' ); ?>
<?php get_footer(); ?>
template-fullwidth.php 0000666 00000002227 15113065366 0011105 0 ustar 00 <?php
/**
* Template Name: Fullwidth Template
*
* The template for the full-width page.
*
* @package Hestia
* @since Hestia 1.0
*/
get_header();
/**
* Don't display page header if header layout is set as classic blog.
*/
do_action( 'hestia_before_single_page_wrapper' ); ?>
<div class="<?php echo hestia_layout(); ?>">
<?php
$class_to_add = '';
if ( class_exists( 'WooCommerce' ) && ! is_cart() ) {
$class_to_add = 'blog-post-wrapper';
}
?>
<div class="blog-post <?php echo esc_attr( $class_to_add ); ?>">
<div class="container">
<?php
if ( class_exists( 'WooCommerce' ) && ( is_cart() || is_checkout() ) ) {
?>
<div class="row">
<div class="col-sm-12">
<h1 class="hestia-title"><?php single_post_title(); ?></h1>
</div>
</div>
<?php
}
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content-fullwidth', 'page' );
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile;
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div>
</div>
<?php get_footer(); ?>
template-page-sidebar.php 0000666 00000001677 15113065366 0011436 0 ustar 00 <?php
/**
* Template Name: Page with Sidebar
*
* The template for displaying simple page with sidebar
*
* @package Hestia
* @since Hestia 1.1.49
* @author Themeisle
*/
get_header();
/**
* Don't display page header if header layout is set as classic blog.
*/
do_action( 'hestia_before_single_page_wrapper' ); ?>
<div class="<?php echo hestia_layout(); ?>">
<?php
$class_to_add = '';
if ( class_exists( 'WooCommerce' ) && ! is_cart() ) {
$class_to_add = 'blog-post-wrapper';
}
?>
<div class="blog-post <?php esc_attr( $class_to_add ); ?>">
<div class="container">
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'page' );
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile;
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div>
</div>
<?php get_footer(); ?>
template-pagebuilder-blank.php 0000666 00000000764 15113065366 0012457 0 ustar 00 <?php
/**
* Template Name: Page Builder Blank
*
* The template for the page builder blank.
*
* @package Hestia
* @since Hestia 1.1.24
* @author Themeisle
*/ ?>
<?php
hestia_no_content_get_header();
do_action( 'hestia_page_builder_blank_before_content' );
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'pagebuilder' );
endwhile;
endif;
do_action( 'hestia_page_builder_blank_after_content' );
hestia_no_content_get_footer();