-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy patharchive.php
More file actions
executable file
·44 lines (39 loc) · 1.38 KB
/
archive.php
File metadata and controls
executable file
·44 lines (39 loc) · 1.38 KB
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
42
43
44
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<div class="mdui-container-fluid" >
<div class="mdui-row dreamcat-content-header" >
<div class="mdui-container" >
<h1 class="dreamcat-title title" >
<?php
$this->archiveTitle([
'category' => _t('分类:%s'),
'search' => _t('搜索结果:%s'),
'tag' => _t('标签:%s'),
'author' => _t('作者:%s'),
'date' => _t('归档:%s')
], '', '');
?>
</h1 >
</div >
</div >
</div >
<div class="mdui-hidden-sm-down dreamcat-img-header-wrapper" >
<div class='dreamcat-img-header dreamcat-img-header-index dreamcat-img-header-md' ></div >
</div >
<div class="mdui-hidden-md-up dreamcat-img-header-wrapper" >
<div class='dreamcat-img-header dreamcat-img-header-index dreamcat-img-header-sm' ></div >
</div >
<?php $this->need("component/toolbar.php") ?>
<div class="mdui-container" >
<div class="mdui-container" >
<div class="mdui-row" >
<div class="mdui-col-xs-6 mdui-col-sm-3 mdui-hidden-sm-down" >
<?php $this->need('component/sidebar.php'); ?>
</div>
<div class="mdui-col-xs-12 mdui-col-sm-9" >
<?php $this->need("component/article-list.php") ?>
</div>
</div >
</div >
</div >
<?php $this->need('footer.php'); ?>