| Server IP : 104.21.21.239 / Your IP : 216.73.216.11 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/home2/domains/ndb/wp-content/themes/sonic/ |
Upload File : |
<?php
/**
* Template Name: Page Left Sidebar
*
* @package WordPress
* @subpackage Sonic
* @since Sonic 1.0.0
*/
get_header();
the_post();
$fwc = ffContainer::getInstance();
$postMeta = $fwc->getDataStorageFactory()->createDataStorageWPPostMetas_NamespaceFacade( $post->ID );
$pageTitle = $postMeta->getOptionCoded( 'single-page' );
$sectionQuery = ffContainer::getInstance()->getOptionsFactory()->createQuery( $pageTitle, 'ffComponent_Theme_MetaboxPage_TitleView');
?>
<section data-section="page-template: sonic/page.php" class="section section-white clearfix">
<div class="container section-container">
<div class="row">
<div class="col-xs-12 col-sm-8 col-sm-push-4 col-md-9 col-md-push-3">
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if( $sectionQuery->get('general show') ){ ?>
<div class="title-block">
<h1 class="title "><?php the_title(); ?></h1>
</div>
<?php } ?>
<div class="post-content-block"><?php the_content(); ?></div>
<div class="clearfix"></div>
<?php wp_link_pages(); ?>
<div class="clearfix"></div>
<br /><br />
<?php
ffTemporaryQueryHolder::setQuery('comments-form', ffThemeOptions::getQuery('translation comments-form') ); // $query->get('comments-form'));
ffTemporaryQueryHolder::setQuery('comments-list', ffThemeOptions::getQuery('translation comments-list') ); // $query->get('comments-list'));
comments_template();
ffTemporaryQueryHolder::deleteQuery('comments-form');
ffTemporaryQueryHolder::deleteQuery('comments-list');
?>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-sm-pull-8 col-md-3 col-md-pull-9">
<?php get_sidebar(); ?>
</div>
</div>
</div>
</section>
<?php
get_footer();