| Server IP : 89.117.53.150 / Your IP : 216.73.216.11 Web Server : Apache System : Linux server2.hostofiraq.site 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64 User : iscmbt-kufa-atu ( 1014) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/iscmbt-kufa-atu/public_html/wp-content/themes/eventalk/ |
Upload File : |
<?php
/**
* @author RadiusTheme
* @since 1.0
* @version 1.0
*/
namespace radiustheme\Eventalk;
// Layout class
if ( RDTheme::$layout == 'full-width' ) {
$rdtheme_layout_class = 'col-sm-12 col-xs-12';
}
else{
$rdtheme_layout_class = 'col-md-9 col-xs-12';
}
?>
<?php get_header(); ?>
<div id="primary" class="content-area">
<div class="container">
<div class="row">
<?php
if ( RDTheme::$layout == 'left-sidebar' ) {
get_sidebar();
}
?>
<div class="<?php echo esc_attr( $rdtheme_layout_class );?>">
<main id="main" class="site-main">
<?php while ( have_posts() ) : the_post(); ?>
<?php
get_template_part( 'template-parts/content-single', get_post_format() );
if ( comments_open() || get_comments_number() ){
comments_template();
}
?>
<?php endwhile; ?>
</main>
</div>
<?php
if ( RDTheme::$layout == 'right-sidebar' ) {
get_sidebar();
}
?>
</div>
</div>
</div>
<?php get_footer(); ?>