wqg 3 týždňov pred
rodič
commit
49def1f880
1 zmenil súbory, kde vykonal 17 pridanie a 24 odobranie
  1. 17 24
      usr/themes/default/sidebar.php

+ 17 - 24
usr/themes/default/sidebar.php

@@ -10,20 +10,6 @@
         </section>
     <?php endif; ?>
 
-    <?php if (!empty($this->options->sidebarBlock) && in_array('ShowRecentComments', $this->options->sidebarBlock)): ?>
-        <section class="widget">
-            <h3 class="widget-title"><?php _e('最近回复'); ?></h3>
-            <ul class="widget-list">
-                <?php \Widget\Comments\Recent::alloc()->to($comments); ?>
-                <?php while ($comments->next()): ?>
-                    <li>
-                        <a href="<?php $comments->permalink(); ?>"><?php $comments->author(false); ?></a>: <?php $comments->excerpt(35, '...'); ?>
-                    </li>
-                <?php endwhile; ?>
-            </ul>
-        </section>
-    <?php endif; ?>
-
     <?php if (!empty($this->options->sidebarBlock) && in_array('ShowCategory', $this->options->sidebarBlock)): ?>
         <section class="widget">
             <h3 class="widget-title"><?php _e('分类'); ?></h3>
@@ -35,27 +21,34 @@
         <section class="widget">
             <h3 class="widget-title"><?php _e('归档'); ?></h3>
             <ul class="widget-list">
-                <?php \Widget\Contents\Post\Date::alloc('type=month&format=F Y')
+                <?php \Widget\Contents\Post\Date::alloc('type=month&format=n月 Y')
                     ->parse('<li><a href="{permalink}">{date}</a></li>'); ?>
             </ul>
         </section>
     <?php endif; ?>
 
+    <?php if (!empty($this->options->sidebarBlock) && in_array('ShowRecentComments', $this->options->sidebarBlock)): ?>
+        <section class="widget">
+            <h3 class="widget-title"><?php _e('最近回复'); ?></h3>
+            <ul class="widget-list">
+                <?php \Widget\Comments\Recent::alloc()->to($comments); ?>
+                <?php while ($comments->next()): ?>
+                    <li>
+                        <a href="<?php $comments->permalink(); ?>"><?php $comments->author(false); ?></a>: <?php $comments->excerpt(35, '...'); ?>
+                    </li>
+                <?php endwhile; ?>
+            </ul>
+        </section>
+    <?php endif; ?>
+
     <?php if (!empty($this->options->sidebarBlock) && in_array('ShowOther', $this->options->sidebarBlock)): ?>
         <section class="widget">
             <h3 class="widget-title"><?php _e('其它'); ?></h3>
             <ul class="widget-list">
-                <?php if ($this->user->hasLogin()): ?>
-                    <li class="last"><a href="<?php $this->options->adminUrl(); ?>"><?php _e('进入后台'); ?>
-                            (<?php $this->user->screenName(); ?>)</a></li>
-                    <li><a href="<?php $this->options->logoutUrl(); ?>"><?php _e('退出'); ?></a></li>
-                <?php else: ?>
-                    <li class="last"><a href="<?php $this->options->adminUrl('login.php'); ?>"><?php _e('登录'); ?></a>
-                    </li>
-                <?php endif; ?>
+                
                 <li><a href="<?php $this->options->feedUrl(); ?>"><?php _e('文章 RSS'); ?></a></li>
                 <li><a href="<?php $this->options->commentsFeedUrl(); ?>"><?php _e('评论 RSS'); ?></a></li>
-                <li><a href="https://typecho.org">Typecho</a></li>
+                <!--<li><a href="https://typecho.org">Typecho</a></li> -->
             </ul>
         </section>
     <?php endif; ?>