-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.php
63 lines (53 loc) · 2.9 KB
/
sidebar.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox" >
<!-- Toggleable sidebar -->
<div class="sidebar" id="sidebar">
<div class="sidebar-item">
<p><?php $this->options->description() ?></p>
</div>
<nav class="sidebar-nav">
<a class="sidebar-nav-item <?php if($this->is('index')): ?> active<?php endif; ?>" href="<?php $this->options->siteUrl(); ?>">主页</a>
<?php $this->widget('Widget_Contents_Page_List')->to($pages); ?>
<?php while($pages->next()): ?>
<a class="sidebar-nav-item <?php if($this->is('page', $pages->slug)): ?> active<?php endif; ?>" href="<?php $pages->permalink(); ?>" title="<?php $pages->title(); ?>"><?php $pages->title(); ?></a>
<?php endwhile; ?>
</nav>
<?php if (!empty($this->options->sidebarFunc) && in_array('categories', $this->options->sidebarFunc)): ?>
<div class="sidebar-item-other">
<p class="category">
分类
</p>
</div>
<nav class="sidebar-nav">
<?php $this->widget('Widget_Metas_Category_List')->to($category); ?>
<?php while($category->next()): ?>
<a class="sidebar-nav-item <?php if($this->is('category', $category->slug)): ?> active<?php endif; ?>" href="<?php $category->permalink(); ?>" title="<?php $category->title(); ?>"><?php $category->name(); ?></a>
<?php endwhile; ?>
</nav>
<?php endif;?>
<?php if (!empty($this->options->sidebarFunc) && in_array('snslinks', $this->options->sidebarFunc)): ?>
<div class="sidebar-item-other">
<p class="sns">
社交连接
</p>
</div>
<nav class="sidebar-nav">
<?php if ($this->options->socialweibo): ?>
<a class="sidebar-nav-item" href="<?php $this->options->socialweibo(); ?>" title="Weibo" target="_blank">微博</a>
<?php endif; ?>
<?php if ($this->options->socialzhihu): ?>
<a class="sidebar-nav-item" href="<?php $this->options->socialzhihu(); ?>" title="Zhihu" target="_blank">知乎</a>
<?php endif; ?>
<?php if ($this->options->socialgithub): ?>
<a class="sidebar-nav-item" href="<?php $this->options->socialgithub(); ?>" title="Github" target="_blank">Github</a>
<?php endif; ?>
</nav>
<?php endif;?>
<div class="sidebar-item-other">
<p class="copyright">
© <?php echo date('Y'); ?>. All rights reserved.
<?php if ($this->options->cnzzinfo):?>
<?php $this->options->cnzzinfo(); ?>
<?php endif; ?>
</p>
</div>
</div>