|
Server : LiteSpeed System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : nandedex ( 1060) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/nandedex/www/s.nandedexpress.com/ |
page-builder.php 0000644 00000001605 15121431756 0007624 0 ustar 00 <?php
/**
* Template Name: Gutenberg Block / Page Builder (ColorMag)
*
* Displays the Page Builder Template provided via the theme.
* Suitable for page builder plugins
*
* @package ColorMag
*
* @since ColorMag 2.2.3
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
get_header();
?>
<div class="cm-row">
<?php
/**
* Hook: colormag_before_body_content.
*/
do_action( 'colormag_before_body_content' );
?>
<div id="cm-primary" class="cm-primary">
<div class="cm-posts" class="pagebuilder-content clearfix">
<?php
while ( have_posts() ) :
the_post();
the_content();
endwhile;
?>
</div><!-- .cm-posts -->
</div><!-- .cm-primary -->
<?php
/**
* Hook: colormag_after_body_content.
*/
do_action( 'colormag_after_body_content' );
?>
</div>
<?php
get_footer();
magazine.php 0000644 00000003616 15121431756 0007063 0 ustar 00 <?php
/**
* Template Name: Magazine Template
*
* Displays the Content in widgetized magazine layout like front page
*
* @package ColorMag
*
* @since ColorMag 1.0.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
get_header();
?>
<div class="cm-front-page-top-section">
<div class="widget_slider_area">
<?php
if ( is_active_sidebar( 'colormag_front_page_slider_area' ) ) {
dynamic_sidebar( 'colormag_front_page_slider_area' );
}
?>
</div>
<div class="cm-beside-slider-widget">
<?php
if ( is_active_sidebar( 'colormag_front_page_area_beside_slider' ) ) {
dynamic_sidebar( 'colormag_front_page_area_beside_slider' );
}
?>
</div>
</div>
<div class="cm-row">
<?php
/**
* Hook: colormag_before_body_content.
*/
do_action( 'colormag_before_body_content' );
?>
<div id="cm-primary" class="cm-primary">
<div class="cm-posts clearfix">
<?php
if ( is_active_sidebar( 'colormag_front_page_content_top_section' ) ) {
dynamic_sidebar( 'colormag_front_page_content_top_section' );
}
if ( is_active_sidebar( 'colormag_front_page_content_middle_left_section' ) || is_active_sidebar( 'colormag_front_page_content_middle_right_section' ) ) {
?>
<div class="cm-one-half">
<?php
dynamic_sidebar( 'colormag_front_page_content_middle_left_section' );
?>
</div>
<div class="cm-one-half cm-one-half-last">
<?php
dynamic_sidebar( 'colormag_front_page_content_middle_right_section' );
?>
</div>
<?php
}
if ( is_active_sidebar( 'colormag_front_page_content_bottom_section' ) ) {
dynamic_sidebar( 'colormag_front_page_content_bottom_section' );
}
?>
</div>
</div>
<?php
colormag_sidebar_select();
/**
* Hook: colormag_after_body_content.
*/
do_action( 'colormag_after_body_content' );
?>
</div>
<?php
get_footer();
contact.php 0000644 00000001561 15121431756 0006720 0 ustar 00 <?php
/**
* Template Name: Contact Page Template
*
* Displays the Contact Page Template of the theme.
*
* @package ColorMag
*
* @since ColorMag 1.0.0
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
get_header();
?>
<div class="cm-row">
<?php
/**
* Hook: colormag_before_body_content.
*/
do_action( 'colormag_before_body_content' );
?>
<div id="cm-primary" class="cm-primary">
<div class="cm-posts clearfix">
<?php
while ( have_posts() ) :
the_post();
get_template_part( '/template-parts/content', 'page' );
endwhile;
?>
</div><!-- .cm-posts -->
</div><!-- .cm-primary -->
<?php
colormag_sidebar_select();
/**
* Hook: colormag_after_body_content.
*/
do_action( 'colormag_after_body_content' );
?>
</div>
<?php
get_footer();