forked from baomihuahua/lolimeow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
40 lines (38 loc) · 1.52 KB
/
page.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-10 col-md-10 ml-auto mr-auto"><?php while (have_posts()) : the_post(); ?>
<div class="post-single wow bounceInUp animated">
<div class="entry-header single-entry-header">
<h1 class="entry-title"><?php the_title(); echo get_the_subtitle(); ?></h1>
</div>
<div class="entry-content">
<?php the_content(); ?>
</div>
</div><?php endwhile; ?>
<?php comments_template('', true); ?>
</div>
</div>
<hr>
</div>
</div>
</main>
<?php get_footer(); ?>