Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
home
/
puskom
/
unschool
/
//home/puskom/unschool/page.php
<?php /** * @package unschool */ get_header(); ?> <div class="container" id="contentdiv"> <div class="row"> <div class="col-md-8 site-main"> <div class="blog-post"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div><h1><?php echo the_title(); ?></h1></div> <div><?php echo the_content();?></div> <?php if ( is_singular() ) wp_enqueue_script( "comment-reply" ); ?> <?php if ( comments_open() || get_comments_number() ) : comments_template(); endif;?> <?php endwhile; endif; ?> </div><!--blog-post --> </div><!--col-md-8--> <div class="col-md-4" id="sidebar"> <?php get_sidebar();?> </div><!--col-md-4--> <div class="clearfix"></div> </div><!-- row --> </div><!-- container --> <?php get_footer(); ?>