Files
typecho/admin/page-title.php
T
2013-10-07 19:39:25 +08:00

19 lines
707 B
PHP

<?php if(!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php if($notice->have() && in_array($notice->noticeType, array('success', 'notice', 'error'))): ?>
<div class="container message <?php $notice->noticeType(); ?> popup typecho-radius-bottomleft typecho-radius-bottomright">
<ul>
<?php $notice->lists(); ?>
</ul>
</div>
<?php endif; ?>
<div class="container typecho-page-title">
<div class="column-24">
<h2><?php echo $menu->title; ?><?php
if (!empty($menu->addLink)) {
echo "<a href=\"{$menu->addLink}\">" . _t("新增") . "</a>";
}
?></h2>
<p><a href="<?php $options->siteUrl(); ?>"><?php _e('查看我的站点'); ?></a></p>
</div>
</div>