forked from daixl2010/Typecho-Nesoft-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
executable file
·35 lines (26 loc) · 936 Bytes
/
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
<?php $this->need('header.php'); ?>
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="archive-header"><?php $this->archiveTitle(array(
'category' => _t('分类: %s '),
'search' => _t('包含关键字 %s 的文章'),
'tag' => _t('标签: %s 下的文章'),
'author' => _t('作者:%s 发布的文章')
), '', ''); ?></div>
<?php if ($this->have()): ?>
<?php include('inc/post-format/content.php'); ?>
<?php else: ?>
<article class="well">
<h2 class="header"><?php _e('没有找到内容'); ?></h2>
</article>
<?php endif; ?>
</div><!--/.col-md-8-->
<aside class="col-md-4 hidden-xs hidden-sm">
<div id="sidebar">
<?php include('sidebar.php'); ?>
</div>
</aside>
</div><!--/.row-->
</div>
<?php include('footer.php'); ?>