-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patharchive.php
executable file
·41 lines (37 loc) · 1.03 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
37
38
39
40
41
<?php get_header() ?>
<div class="main block-center clearfix">
<?php get_sidebar(); ?>
<div class="container">
<div class="archives">
<ul>
<li><?php the_archive_title(); ?></li>
<?php
if ( have_posts()) : ?>
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
?>
<li><span class="time"> <?php the_date('Y-m-d') ?></span><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?
endwhile;?>
<li class="footer"></li>
</ul>
</div>
<?php
else :
echo "暂无文章";
endif; ?>
</div>
</div>
</div>
<div id="sidebar-toggle">
<div class="sidebar-toggle-wrap">
<span class="item item-top"></span>
<span class="item item-middle"></span>
<span class="item item-bottom"></span>
</div>
</div>
<div id="backTop" class="hide">
<i class="fa fa-arrow-up"></i>
</div>
<?php get_footer() ?>