管理菜单调整

This commit is contained in:
Skywt2003 2021-11-17 15:41:40 +08:00
parent f0544a42b7
commit 16fccc7110
2 changed files with 12 additions and 4 deletions

View File

@ -71,6 +71,10 @@
<?php _e('编辑此页'); ?>
</a>
<?php endif; ?>
<a class="badge badge-default ml-1 mr-1" href="<?php $this->options->siteUrl('admin/manage-posts.php?status=draft'); ?>" title="Drafts">
<i class="far fa-edit"></i>
<?php _e('草稿箱'); ?>
</a>
<a class="badge badge-default ml-1 mr-1" href="<?php $this->options->siteUrl('admin'); ?>" title="Backstage">
<i class="fas fa-user-cog"></i>
<?php _e('网站后台'); ?>
@ -79,11 +83,11 @@
<i class="far fa-cog"></i>
<?php _e('主题设置'); ?>
</a>
<a class="badge badge-default ml-1 mr-1" href="#" onclick="javascript:location.reload();" title="Refresh">
<a class="badge badge-secondary ml-1 mr-1" href="#" onclick="javascript:location.reload();" title="Refresh">
<i class="fas fa-redo"></i>
<?php _e('刷新'); ?>
</a>
<a class="badge badge-default ml-1 mr-1" href="<?php $this->options->logoutUrl(); ?>" title="Logout">
<a class="badge badge-secondary ml-1 mr-1" href="<?php $this->options->logoutUrl(); ?>" title="Logout">
<i class="fas fa-sign-out-alt"></i>
<?php _e('退出'); ?>
</a>

View File

@ -67,15 +67,19 @@ $this->need('functions.php'); // 不知道为啥,似乎模版页面不会自
<i class="fas fa-user-cog"></i>
<?php _e('网站后台'); ?>
</a>
<a class="badge badge-default ml-1 mr-1" href="<?php $this->options->siteUrl('admin/manage-posts.php?status=draft'); ?>" title="Drafts">
<i class="far fa-edit"></i>
<?php _e('草稿箱'); ?>
</a>
<a class="badge badge-default ml-1 mr-1" href="<?php $this->options->siteUrl('admin/options-theme.php'); ?>" title="Settings">
<i class="far fa-cog"></i>
<?php _e('主题设置'); ?>
</a>
<a class="badge badge-default ml-1 mr-1" href="#" onclick="javascript:location.reload();" title="Refresh">
<a class="badge badge-secondary ml-1 mr-1" href="#" onclick="javascript:location.reload();" title="Refresh">
<i class="fas fa-redo"></i>
<?php _e('刷新'); ?>
</a>
<a class="badge badge-default ml-1 mr-1" href="<?php $this->options->logoutUrl(); ?>" title="Logout">
<a class="badge badge-secondary ml-1 mr-1" href="<?php $this->options->logoutUrl(); ?>" title="Logout">
<i class="fas fa-sign-out-alt"></i>
<?php _e('退出'); ?>
</a>