sky/homepage.php

185 lines
9.7 KiB
PHP
Raw Permalink Normal View History

2021-07-25 09:12:40 +08:00
<?php
/**
* 网站首页
*
* @package index
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
2021-08-04 20:47:28 +08:00
$this->need('functions.php'); // 不知道为啥,似乎模版页面不会自动引用 functions.php
2021-07-25 09:12:40 +08:00
?>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="<?php $this->options->charset(); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2021-07-28 10:06:21 +08:00
<title><?php $this->options->title(); ?></title>
2021-07-25 09:12:40 +08:00
2021-08-30 21:39:25 +08:00
<link rel="apple-touch-icon" href="<?php $this->options->logoUrl() ?>">
<link rel="shortcut icon" href="<?php $this->options->themeUrl('/assets/favicon.ico')?>" />
<link rel="bookmark" href="<?php $this->options->themeUrl('/assets/favicon.ico')?>" type="image/x-icon"/>
2021-07-25 09:12:40 +08:00
<!-- FontAwesome Icons -->
2022-02-04 11:08:56 +08:00
<link type="text/css" href="<?php $this->options->themeUrl('/assets/css/fa-all.min.css')?>" rel="stylesheet">
2021-09-25 09:41:04 +08:00
2022-02-04 16:49:38 +08:00
<!-- Google Fonts -->
<link href="https://fonts.loli.net/css2?family=Noto+Serif+SC:wght@200;300;400;500;600;700;900&display=swap" rel="stylesheet">
2021-07-25 09:12:40 +08:00
<!-- JS: jQuery & popper & bootstrap -->
2022-02-04 11:08:56 +08:00
<script src="<?php $this->options->themeUrl('/assets/js/core/jquery.min.js');?>"></script>
2021-07-25 09:12:40 +08:00
<script src="<?php $this->options->themeUrl('/assets/js/core/popper.min.js');?>"></script>
2022-02-04 11:08:56 +08:00
<script src="<?php $this->options->themeUrl('/assets/js/core/bootstrap.min.js');?>"></script>
2021-09-25 09:41:04 +08:00
<!-- lately.js -->
2022-02-04 11:08:56 +08:00
<!-- <script src="<?php #$this->options->themeUrl('/assets/js/plugins/lately.js');?>"></script> -->
2021-07-25 09:12:40 +08:00
2021-09-25 09:41:04 +08:00
<!-- Argon Theme CSS & JS-->
<link type="text/css" href="<?php $this->options->themeUrl('/assets/css/argon-design-system.css')?>" rel="stylesheet">
2021-07-25 09:12:40 +08:00
<script src="<?php $this->options->themeUrl('/assets/js/argon-design-system.min.js');?>"></script>
2021-09-25 09:41:04 +08:00
<!-- Sky CSS-->
<link type="text/css" href="<?php $this->options->themeUrl('/assets/style.css')?>" rel="stylesheet">
2022-02-04 11:08:56 +08:00
<!-- Highlight.js -->
<!-- <link type="text/css" href="<?php #$this->options->themeUrl('/assets/css/atom-one-dark.min.css')?>" rel="stylesheet"> -->
<!-- <script src="<?php #$this->options->themeUrl('/assets/js/plugins/highlight.min.js');?>"></script> -->
<!-- <script>hljs.highlightAll();</script> -->
2021-07-25 09:12:40 +08:00
2022-02-04 11:08:56 +08:00
<!-- Darkreader.js -->
<script src="<?php $this->options->themeUrl('/assets/js/plugins/darkreader.min.js');?>"></script>
2021-09-24 21:40:14 +08:00
<script>DarkReader.auto({brightness:100, contrast:90, sepia:10});</script>
2022-02-04 11:08:56 +08:00
<!-- KaTeX css-->
<!-- <link type="text/css" href="<?php #$this->options->themeUrl('/assets/css/katex.min.css')?>" rel="stylesheet"> -->
<!-- fancybox js&css-->
<!-- <script src="<?php #$this->options->themeUrl('/assets/js/plugins/jquery.fancybox.min.js');?>"></script> -->
<!-- <link type="text/css" href="<?php #$this->options->themeUrl('/assets/css/jquery.fancybox.min.css')?>" rel="stylesheet"> -->
2021-09-24 21:40:14 +08:00
<!-- Animate.css -->
2022-02-04 11:08:56 +08:00
<link type="text/css" href="<?php $this->options->themeUrl('/assets/css/animate.min.css')?>" rel="stylesheet">
<?php $this->options->headerCode(); ?>
2021-12-03 14:39:05 +08:00
<style><?php $this->options->cutsomCSS(); ?></style>
2021-07-25 09:12:40 +08:00
<?php $this->header(); ?>
</head>
<!--[if lt IE 8]>
当前网页不支持你正在使用的浏览器。为了正常访问, 请升级你的浏览器!
2021-07-25 09:12:40 +08:00
<![endif]-->
<body>
2021-09-24 22:48:39 +08:00
<?php if ($this->user->hasLogin()): ?>
<nav class="container fixed-bottom p-2 navbar navbar-light">
2021-09-24 22:48:39 +08:00
<div>
欢迎,<a href="<?php $this->options->profileUrl(); ?>"><?php $this->user->screenName(); ?></a>
2021-11-17 15:41:40 +08:00
<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>草稿箱
</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>网站后台
2021-11-17 15:41:40 +08:00
</a>
2021-09-24 22:48:39 +08:00
<a class="badge badge-default ml-1 mr-1" href="<?php $this->options->siteUrl('admin/options-theme.php'); ?>" title="Settings">
2021-12-25 21:23:21 +08:00
<i class="fas fa-cog"></i>主题设置
2021-09-24 22:48:39 +08:00
</a>
2021-11-17 15:41:40 +08:00
<a class="badge badge-secondary ml-1 mr-1" href="#" onclick="javascript:location.reload();" title="Refresh">
<i class="fas fa-redo"></i>刷新
2021-09-24 22:48:39 +08:00
</a>
2021-11-17 15:41:40 +08:00
<a class="badge badge-secondary ml-1 mr-1" href="<?php $this->options->logoutUrl(); ?>" title="Logout">
<i class="fas fa-sign-out-alt"></i>退出
2021-09-24 22:48:39 +08:00
</a>
</div>
</nav>
<?php endif; ?>
<div class="flex-container animate__animated animate__fadeIn">
2021-08-04 20:47:28 +08:00
<header id="header" class="clearfix mb-4">
<div class="container">
<div class="row">
<div class="col">
2021-08-04 20:47:28 +08:00
<div class="text-center">
<img src="<?php $this->options->logoUrl() ?>" class="site-avatar shadow rounded-circle mx-auto d-block" alt="<?php $this->options->title() ?>" width=128 height=128>
<h2 class="mt-3 font-weight-bold text-default"><?php $this->options->title() ?></h2>
<p class="description"><?php $this->options->description() ?></p>
</div>
2021-07-25 09:12:40 +08:00
</div>
2021-08-04 20:47:28 +08:00
</div><!-- end .row -->
</div>
</header><!-- end #header -->
2021-09-28 20:44:33 +08:00
<nav class="container navbar navbar-light navbar-expand-lg">
<!-- 这里好像是 Argon bug如果写 navbar-expand-sm 的话屏幕大小在一定范围内导航栏会消失 -->
<!-- 其实更喜欢原生 Bootstrap5 的折叠样式而非 Argon 的浮窗样式。如果删除 navbar-expand-lg class 就会调用折叠样式,只可惜没法自适应 -->
<a></a> <!-- 十分简陋的处理方式,为了让 × 符号在右边 -->
2021-08-16 22:15:50 +08:00
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
2021-09-28 20:44:33 +08:00
<div class="navbar-collapse-header">
<div class="row">
<div class="col-6 collapse-brand">Menu</div>
<div class="col-6 collapse-close">
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#collapsibleNavbar" aria-controls="collapsibleNavbar" aria-expanded="true" aria-label="Toggle navigation">
<!-- Argon 里默认用两根竖线拼成 × 符号,默认这里的元素会被旋转 45 -->
<i class="fas fa-times" style="transform: none"></i>
</button>
</div>
</div>
</div>
2021-08-04 20:47:28 +08:00
<ul class="col navbar-nav justify-content-center pr-0">
<li class="nav-item">
<a class="nav-link nav-link-icon text-gray" href="<?php $this->options->siteUrl();?>">
<i class="fa fa-home"></i> 首页
2021-08-04 20:47:28 +08:00
</a>
</li>
<?php if (strpos($this->options->frontPage, 'file') !== FALSE) {?>
<li class="nav-item">
<a class="nav-link nav-link-icon text-gray" href="<?php echo $this->options->siteUrl.$this->options->routingTable['archive']['url'] ?>">
<i class="fa fa-book"></i> 文章
2021-08-04 20:47:28 +08:00
</a>
</li>
<?php } ?>
<?php $this->widget('Widget_Contents_Page_List')->to($pagelist);
while ($pagelist->next()): ?>
<li class="nav-item">
<a class="nav-link nav-link-icon text-gray" href="<?php echo $pagelist->permalink ?>">
<?php if ($pagelist->fields->pageIcon != '') {?>
2021-08-04 21:39:46 +08:00
<i class="<?php echo $pagelist->fields->pageIcon ?>"></i>
2021-08-04 20:47:28 +08:00
<?php } ?>
<?php echo $pagelist->title ?>
</a>
</li>
<?php endwhile;?>
</ul>
</div>
</nav>
2021-07-25 09:12:40 +08:00
</div>
<footer class="mt-5 mb-5 animate__animated animate__fadeIn" id="footer" role="footer">
2021-07-25 09:12:40 +08:00
<div class="container">
2021-08-03 20:45:41 +08:00
<hr>
2021-07-28 10:06:21 +08:00
<div class="text-center">
<p>
2021-08-10 22:07:19 +08:00
<?php if ($this->options->nisInfo != ""): ?>
2021-07-28 10:06:21 +08:00
<a id="nis" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=<?php echo mb_substr($this->options->nisInfo, 5, 14) ?>" target="_blank">
<?php echo $this->options->nisInfo ?>
2021-08-10 22:07:19 +08:00
</a> | <?php endif; ?>
<?php if ($this->options->icpInfo != ""): ?>
<a href="https://beian.miit.gov.cn/" target="_blank"><?php echo $this->options->icpInfo ?></a>
<?php endif; ?>
<?php if ($this->options->bottomLinks != ""): ?>
<?php Links_Plugin::output($pattern=' | <a href="{url}" title="{title}" target="_blank">{name}</a>', $links_num=0, $sort=$this->options->bottomLinks); ?>
<?php endif; ?>
2021-07-28 10:06:21 +08:00
</p>
2021-10-07 12:10:59 +08:00
<!-- <p>&copy; <?php #echo date('Y');?> <?php #$this->options->title(); ?> ♥ <?php #Typecho_Widget::widget('Widget_Stat')->to($stat); ?><?php #$stat->publishedPostsNum() ?> Posts <?php #allOfCharacters();?> Words crafted</p> -->
<p>&copy; <?php echo date('Y');?> <?php $this->options->title(); ?> <i class="fas fa-heart text-danger"></i> <?php Typecho_Widget::widget('Widget_Stat')->to($stat); ?><?php $stat->publishedPostsNum() ?> Posts <?php allOfCharacters();?> Words crafted</p>
2021-07-28 10:06:21 +08:00
<p>Powered by <a href="https://www.typecho.org">Typecho</a> | Theme <a href="https://skywt.cn/sky-theme">Sky</a> by <a href="https://skywt.cn/">SkyWT</a></p>
<?php $this->options->footerCode(); ?>
2021-07-28 10:06:21 +08:00
</div>
</div>
</footer><!-- end #footer -->
<?php $this->footer(); ?>
</body>
</html>