-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
46 lines (38 loc) · 923 Bytes
/
home.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
<?php
/**
* Site blog
*/
get_header();
$blog_id = get_option( 'page_for_posts', true );
?>
<div class="blog-hero">
<div class="container">
<div class="hero">
<header class="row justify-content-around text-center">
<div class="col-12">
<h1 class="bold-title"><?php echo shd_get_the_title( $blog_id ); ?></h1>
<p class="bold-description"><?php echo shd_get_the_subtitle( $blog_id ); ?></p>
</div>
</header>
</div>
</div>
</div>
<section class="older-posts-section">
<div class="container">
<div class="row justify-content-around">
<div class="col-lg-12">
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', 'archive-element' );
endwhile;
endif;
?>
</div>
</div>
<?php themedd_paging_nav(); ?>
</div>
</section>
<?php
get_footer();