* improve css * fix table * fix write page * improve header nav * fix menu * fix menu * fix menu * add flex grid system * fix * fix flex * fix draft version * using main html element to replace div * improve css * add input type number * fix custom-fields * fix screen
37 lines
1.6 KiB
PHP
37 lines
1.6 KiB
PHP
<?php
|
|
include 'common.php';
|
|
include 'header.php';
|
|
include 'menu.php';
|
|
?>
|
|
|
|
<main class="main">
|
|
<div class="body container">
|
|
<?php include 'page-title.php'; ?>
|
|
<div class="row typecho-page-main" role="main">
|
|
<div class="col-mb-12">
|
|
<div id="typecho-welcome" class="message">
|
|
<form action="<?php $options->adminUrl(); ?>" method="get">
|
|
<h3><?php _e('欢迎您使用 "%s" 管理后台: ', $options->title); ?></h3>
|
|
<ol>
|
|
<li><a class="operate-delete" href="<?php $options->adminUrl('profile.php#change-password'); ?>"><?php _e('强烈建议更改你的默认密码'); ?></a></li>
|
|
<?php if($user->pass('contributor', true)): ?>
|
|
<li><a href="<?php $options->adminUrl('write-post.php'); ?>"><?php _e('撰写第一篇日志'); ?></a></li>
|
|
<li><a href="<?php $options->siteUrl(); ?>"><?php $user->pass('administrator', true) ? _e('查看我的站点') : _e('查看网站'); ?></a></li>
|
|
<?php else: ?>
|
|
<li><a href="<?php $options->siteUrl(); ?>"><?php _e('查看网站'); ?></a></li>
|
|
<?php endif; ?>
|
|
</ol>
|
|
<p><button type="submit" class="btn primary"><?php _e('让我直接开始使用吧 »'); ?></button></p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<?php
|
|
include 'copyright.php';
|
|
include 'common-js.php';
|
|
include 'footer.php';
|
|
?>
|