-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
51 lines (51 loc) · 1.56 KB
/
index.php
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
42
43
44
45
46
47
48
49
50
51
<?php
/**
* Template Name: Blog
*/
?>
<?php
get_header();
$meal_section_id = 6;
get_template_part( "section-templates/banner" );
?>
<div class="main-wrap" id="section-home">
<div <?php post_class( 'single-post' ) ?>>
<div class="container">
<div class="row post-body">
<div class="col-md-12">
<!-- section start-->
<section class="section-gap">
<div id="posts-container">
<?php
while ( have_posts() ) {
the_post();
?>
<div <?php post_class() ?>>
<h2>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
</h2>
<div class="post-content">
<?php the_excerpt(); ?>
</div>
</div>
<?php
}
?>
</div>
</section>
<!-- section end-->
</div>
<div class="row">
<div class="col-12 text-center mt-md-5 mt-3" id="loadmore_container">
<a href="<?php next_posts( get_max_page_number() ); ?>"
id="loadmore"
class="btn btn-danger"><?php _e( 'Load More', 'flowpp' ); ?></a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
get_footer();
?>