mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
36 lines
1.4 KiB
PHP
36 lines
1.4 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* The main template file.
|
||
|
*
|
||
|
* To override home page (for listing latest post) add home.php into the theme.<br>
|
||
|
* If front page displays is set to static, the index.php file will be use.<br>
|
||
|
* If front-page.php exists, it will be override any home page file such as home.php, index.php.<br>
|
||
|
* To learn more please go to https://developer.wordpress.org/themes/basics/template-hierarchy/ .
|
||
|
*
|
||
|
* @package bootstrap-basic4
|
||
|
*/
|
||
|
|
||
|
|
||
|
// begins template. -------------------------------------------------------------------------
|
||
|
get_header();
|
||
|
get_sidebar();
|
||
|
?>
|
||
|
<main id="main" class="col-md-<?php echo \BootstrapBasic4\Bootstrap4Utilities::getMainColumnSize(); ?> site-main" role="main">
|
||
|
<?php
|
||
|
if (have_posts()) {
|
||
|
while (have_posts()) {
|
||
|
the_post();
|
||
|
get_template_part('template-parts/content', get_post_format());
|
||
|
}// endwhile;
|
||
|
|
||
|
$Bsb4Design = new \BootstrapBasic4\Bsb4Design();
|
||
|
$Bsb4Design->pagination();
|
||
|
unset($Bsb4Design);
|
||
|
} else {
|
||
|
get_template_part('template-parts/section', 'no-results');
|
||
|
}// endif;
|
||
|
?>
|
||
|
</main>
|
||
|
<?php
|
||
|
get_sidebar('right');
|
||
|
get_footer();
|