wp-73k/index.php

35 lines
730 B
PHP
Raw Normal View History

2019-05-23 12:30:31 -04:00
<?php
/**
* The default single page template.
*
* @author Freeshifter LLC
* @since 1.0.0
*/
namespace WP_73k;
2019-05-23 12:30:31 -04:00
get_header(); ?>
2021-07-06 09:45:09 -04:00
<main class="container d-flex justify-content-center">
2021-07-06 15:31:46 -04:00
<div class="col-12 col-md-10 col-lg-9 col-xl-8 col-xxl-7 pb-2 mb-4 mt-3">
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
echo get_template_part( 'content-templates/content', 'article' );
}
} ?>
2021-07-04 18:16:33 -04:00
<?php
2021-07-06 15:31:46 -04:00
// if ( !is_active_sidebar( 'sidebar' ) ) : ?>
<!-- <aside class="w-full lg:w-2/6 bg-white border-gray-400 border-2 p-8"> -->
<?php // dynamic_sidebar( 'sidebar' ); ?>
<!-- </aside> -->
2021-07-04 18:16:33 -04:00
<?php
2021-07-06 15:31:46 -04:00
// endif; ?>
2021-07-04 18:16:33 -04:00
</div>
2021-07-06 09:45:09 -04:00
</main>
<?php
2019-05-23 12:30:31 -04:00
get_footer();