-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patharchive.php
36 lines (34 loc) · 1.43 KB
/
archive.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
<div class="outerbox">
<!--It is the outerbox surrounding everything-->
<div class="foreffect">
<?php get_header(); ?>
</div>
<div class="Content">
<div class="post-area">
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="posts">
<div class="title-post">
<div class="title-avatar">
<?php echo get_avatar(get_the_author_meta( 'ID' ),120);?>
<br> By <?php the_author(); ?>
<hr style="width:100%;margin-top:10%;margin-bottom:1%;">
</div>
<div class="title-text">
<h3><?php the_title()?></h3>
<hr><?php comments_number( "No Comments <br> :(" ); ?>
</div>
</div>
<div class="post-content">
<?php the_content("<span class='readmore'>Read More</span>"); ?><hr style="width:100%;">
<?php comments_template( '', true ); ?>
</div>
</div>
<?php endwhile; ?>
</div>
<div class="sidebar-area">
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>
</div>