-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticle.php
More file actions
23 lines (23 loc) · 896 Bytes
/
article.php
File metadata and controls
23 lines (23 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="border_outer article_outer">
<div class="border_inner">
<div class="article">
<section>
<div class="article_header">
<h1><?php the_title(); ?></h1>
<p><time><?php echo get_the_date(); ?></time></p>
</div>
<div class="article_main">
<?php the_content(); ?>
</div>
<div class="article_comments">
<?php comments_template(); ?>
</div>
<div class="article_footer">
<p><?php the_category(); ?></p>
</div>
</section>
</div>
</div>
</div>
<?php endwhile; endif; ?>