-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·41 lines (32 loc) · 874 Bytes
/
Copy pathindex.php
File metadata and controls
executable file
·41 lines (32 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?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 gutenberg-starter-theme
*/
get_header(); ?>
<div class="container">
<div class="row">
<?php
if ( have_posts() ) {
// Load posts loop.
while ( have_posts() ) {
the_post();
echo '<div class="col-12 col-md-4 d-flex mt-5">';
get_template_part( 'template-parts/card/post' , get_post_type());
echo "</div>";
}
} ?>
</div>
<div class="row my-5">
<?php mid_bootstrap_pagination(); ?>
</div>
</div>
<?php get_footer();