-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsidebar.php
More file actions
19 lines (19 loc) · 806 Bytes
/
Copy pathsidebar.php
File metadata and controls
19 lines (19 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<aside id="sidebar">
<div class="recently-used bg-black bg-opacity-50 shadow rounded-end">
<span class="title text-white bg-black bg-opacity-75 shadow rounded-end">
<?php _e('最近') ?>
</span>
<div class="body">
<p class="text-white flex-fill mt-5 text-center"><?php _e('暂无数据...') ?></p>
</div>
</div>
<div class="favorite-used bg-black bg-opacity-50 shadow rounded-end">
<span class="title text-white bg-black bg-opacity-75 shadow rounded-end">
<?php _e('收藏') ?>
</span>
<div class="body overflow-auto">
<p class="text-white flex-fill mt-5 text-center"><?php _e('暂无数据...') ?></p>
</div>
</div>
</aside>