1
1
<?php if (!defined ('__TYPECHO_ROOT_DIR__ ' )) {
2
- exit ;
2
+ exit ;
3
3
} ?>
4
4
<?php $ this ->need ('page_header.php ' ); ?>
5
5
<main class="layout" id="content-inner">
6
- <div class="recent-posts category_ui" id="recent-posts">
7
- <?php if ($ this ->have ()): ?>
8
- <?php while ($ this ->next ()): ?>
9
- <div class="recent-post-item">
10
- <?php if (noCover ($ this )): ?>
11
- <wehao class="post_cover">
12
- <a href="<?php $ this ->permalink () ?> ">
13
- <img class="post-bg" data-lazy-src="<?php echo get_ArticleThumbnail ($ this );?> " src="<?php echo GetLazyLoad () ?> " onerror="this.onerror=null;this.src='<?php $ this ->options ->themeUrl ('img/404.jpg ' ); ?> '"></a>
14
- </wehao>
15
- <?php endif ?>
16
- <div class="recent-post-info<?php echo noCover ($ this ) ? '' : ' no-cover ' ; ?> ">
17
- <a class="article-title" href="<?php $ this ->permalink (); ?> "><?php $ this ->title (); ?> </a>
18
- <div class="article-meta-wrap">
19
- <?php $ this ->sticky (); ?>
20
- <span class="post-meta-date" style="display:none;">
21
- <i class="far fa-calendar-alt"></i>
22
- <?php _e ('发表于 ' ); ?> <?php $ this ->date (); ?>
23
- <time class="post-meta-date-created" datetime="<?php $ this ->date ('c ' ); ?> ">
24
- </time>
25
- </span>
26
- <i class="fas fa-history"></i>
27
- <span class="article-meta-label">更新于</span>
28
- <?php echo date ('Y-m-d ' , $ this ->modified ); ?>
29
- <time class="post-meta-date-updated" datetime="<?php echo date ('Y-m-d ' , $ this ->modified ); ?> " title="更新于 ">
30
- </time>
31
- <span class="article-meta">
32
- <span class="article-meta__separator">|</span>
33
- <i class="fas fa-inbox article-meta__icon"></i>
34
- <span class="post-meta-date">
35
- <?php _e ('分类: ' ); ?>
36
- <?php $ this ->category (' ' ); ?>
37
- </span>
38
- <span class="article-meta__separator">|</span>
39
- <span class="post-meta-date" itemprop="author">
40
- <?php _e ('作者: ' ); ?>
41
- <a itemprop="name" href="<?php $ this ->author ->permalink (); ?> " rel="author">
42
- <?php $ this ->author (); ?>
43
- </a>
44
- </span>
45
- <span class="article-meta__separator">|</span>
46
- <i class="fas fa-comments"></i>
47
- <span class="post-meta-date" itemprop="interactionCount">
48
- <a itemprop="discussionUrl" href="<?php $ this ->permalink (); ?> #comments">
49
- <?php $ this ->commentsNum ('0条评论 ' , '1 条评论 ' , '%d 条评论 ' ); ?>
50
- </a>
51
- </span>
52
- </span>
53
- </div>
54
- <div class="content">
55
- <?php if ($ this ->fields ->excerpt && $ this ->fields ->excerpt != '' ) {
56
- echo $ this ->fields ->excerpt ;
57
- } else {
58
- echo $ this ->excerpt (130 );
59
- }
60
- echo '<br><br><a href=" ' ,$ this ->permalink (),'" title=" ' ,$ this ->title (),'">阅读全文...</a> ' ;
61
- ?>
62
- </div>
63
- </div>
64
- </div>
65
- <?php endwhile ; ?>
66
- <?php else : ?>
67
- <article class="post">
68
- <h2 class="post-title"><?php _e ('没有找到内容 ' ); ?> </h2>
69
- </article>
70
- <?php endif ; ?>
71
- <nav id="pagination">
72
- <?php $ this ->pageNav ('<i class="fas fa-chevron-left fa-fw"></i> ' , '<i class="fas fa-chevron-right fa-fw"></i> ' , 1 , '... ' , ['wrapTag ' => 'div ' , 'wrapClass ' => 'pagination ' , 'itemTag ' => '' , 'prevClass ' => 'extend prev ' , 'nextClass ' => 'extend next ' , 'currentClass ' => 'page-number current ' ]); ?>
73
- </nav>
74
- </div><!-- end #main -->
6
+ <div class="recent-posts category_ui" id="recent-posts">
7
+ <?php if ($ this ->have ()) : ?>
8
+ <?php
9
+ $ coverIndex = 1 ;
10
+ while ($ this ->next ()) :
11
+ if ($ this ->options ->coverPosition === 'cross ' ){
12
+ $ sideClass = ($ coverIndex % 2 == 0 ) ? 'right ' : 'left ' ;
13
+ }else {
14
+ $ sideClass = $ this ->options ->coverPosition ;
15
+ }
16
+ ?>
17
+ <div class="recent-post-item">
18
+ <?php if (noCover ($ this )) : ?>
19
+ <wehao class="post_cover <?php echo $ sideClass ; ?> ">
20
+ <a href="<?php $ this ->permalink () ?> ">
21
+ <img class="post-bg" data-lazy-src="<?php echo get_ArticleThumbnail ($ this ); ?> " src="<?php echo GetLazyLoad () ?> " onerror="this.onerror=null;this.src='<?php $ this ->options ->themeUrl ('img/404.jpg ' ); ?> '"></a>
22
+ </wehao>
23
+ <?php endif ?>
24
+ <div class="recent-post-info<?php echo noCover ($ this ) ? '' : ' no-cover ' ; ?> ">
25
+ <a class="article-title" href="<?php $ this ->permalink (); ?> "><?php $ this ->title (); ?> </a>
26
+ <div class="article-meta-wrap">
27
+ <?php $ this ->sticky (); ?>
28
+ <span class="post-meta-date" style="display:none;">
29
+ <i class="far fa-calendar-alt"></i>
30
+ <?php _e ('发表于 ' ); ?> <?php $ this ->date (); ?>
31
+ <time class="post-meta-date-created" datetime="<?php $ this ->date ('c ' ); ?> ">
32
+ </time>
33
+ </span>
34
+ <i class="fas fa-history"></i>
35
+ <span class="article-meta-label">更新于</span>
36
+ <?php echo date ('Y-m-d ' , $ this ->modified ); ?>
37
+ <time class="post-meta-date-updated" datetime="<?php echo date ('Y-m-d ' , $ this ->modified ); ?> " title="更新于 ">
38
+ </time>
39
+ <span class="article-meta">
40
+ <span class="article-meta__separator">|</span>
41
+ <i class="fas fa-inbox article-meta__icon"></i>
42
+ <span class="post-meta-date">
43
+ <?php _e ('分类: ' ); ?>
44
+ <?php $ this ->category (' ' ); ?>
45
+ </span>
46
+ <span class="article-meta__separator">|</span>
47
+ <span class="post-meta-date" itemprop="author">
48
+ <?php _e ('作者: ' ); ?>
49
+ <a itemprop="name" href="<?php $ this ->author ->permalink (); ?> " rel="author">
50
+ <?php $ this ->author (); ?>
51
+ </a>
52
+ </span>
53
+ <span class="article-meta__separator">|</span>
54
+ <i class="fas fa-comments"></i>
55
+ <span class="post-meta-date" itemprop="interactionCount">
56
+ <a itemprop="discussionUrl" href="<?php $ this ->permalink (); ?> #comments">
57
+ <?php $ this ->commentsNum ('0条评论 ' , '1 条评论 ' , '%d 条评论 ' ); ?>
58
+ </a>
59
+ </span>
60
+ </span>
61
+ </div>
62
+ <div class="content">
63
+ <?php if ($ this ->fields ->excerpt && $ this ->fields ->excerpt != '' ) {
64
+ echo $ this ->fields ->excerpt ;
65
+ } else {
66
+ echo $ this ->excerpt (130 );
67
+ }
68
+ echo '<br><br><a href=" ' , $ this ->permalink (), '" title=" ' , $ this ->title (), '">阅读全文...</a> ' ;
69
+ ?>
70
+ </div>
71
+ </div>
72
+ </div>
73
+ <?php
74
+ if (noCover ($ this )) {
75
+ $ coverIndex ++;
76
+ }
77
+
78
+ endwhile ; ?>
79
+ <?php else : ?>
80
+ <article class="post">
81
+ <h2 class="post-title"><?php _e ('没有找到内容 ' ); ?> </h2>
82
+ </article>
83
+ <?php endif ; ?>
84
+ <nav id="pagination">
85
+ <?php $ this ->pageNav ('<i class="fas fa-chevron-left fa-fw"></i> ' , '<i class="fas fa-chevron-right fa-fw"></i> ' , 1 , '... ' , ['wrapTag ' => 'div ' , 'wrapClass ' => 'pagination ' , 'itemTag ' => '' , 'prevClass ' => 'extend prev ' , 'nextClass ' => 'extend next ' , 'currentClass ' => 'page-number current ' ]); ?>
86
+ </nav>
87
+ </div><!-- end #main -->
75
88
<?php $ this ->need ('sidebar.php ' ); ?>
76
- </main>
77
- <script type="text/javascript" src="<?php $ this ->options ->themeUrl ('js/wehao.js?v1.4 ' ); ?> "></script>
89
+ </main>
78
90
<?php $ this ->need ('footer.php ' ); ?>
0 commit comments