forked from baomihuahua/lolimeow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
40 lines (40 loc) · 1.43 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
<?php get_header(); ?>
<section class="section-profile-cover section-blog-cover section-shaped my-0 " <?php if( meowdata('banneron') ) {echo md_banner();} ?>>
<div class="shape shape-style-1 shape-primary alpha-4">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="separator separator-bottom separator-skew" >
<svg x="0" y="0" viewBox="0 0 2560 100" preserveAspectRatio="none">
<polygon class="fill-white" points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
</section>
<main class="meowblog">
<div class="main-container">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 post-standard-list3-style">
<?php
while ( have_posts() ) :
the_post();
if( has_post_format( 'status' )) {
get_template_part( 'component/blog-list-status' );
} else if ( has_post_format( 'aside' )) {
get_template_part( 'component/blog-list-aside' );
} else{ get_template_part( 'component/blog-list' );
} ;
endwhile; ?>
</div>
</div>
</div>
<?php md_paging(); ?>
<?php if( meowdata('indexlinks') ){ ?><?php echo get_the_link_items_index(); ?><?php } ?>
</div>
</main>
<?php get_footer(); ?>