-
Notifications
You must be signed in to change notification settings - Fork 3
/
page.php
45 lines (22 loc) · 855 Bytes
/
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
41
42
43
44
45
<?php get_header(); ?>
<div class="category-header" >
<div class="container" style="font-size:30px; margin-top:20px">
<h1 class="category-header-title"><?php the_title(); ?></h1>
</div>
</div>
<div class="container">
<div class="row">
<section class="col-md-12 animate__animated animate__fadeIn">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article>
<div class="forum-post-content">
<?php the_content(); ?>
</div>
</article>
<?php endwhile; else : ?>
<p><?php esc_html_e( 'No posts here.' ); ?></p>
<?php endif; ?>
</section>
</div>
</div>
<?php get_footer(); ?>