112 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			5.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
 | |
| <!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">
 | |
|     <title><?php $this->archiveTitle(array(
 | |
|             'category'  =>  _t('分类 %s 下的文章'),
 | |
|             'search'    =>  _t('包含关键字 %s 的文章'),
 | |
|             'tag'       =>  _t('标签 %s 下的文章'),
 | |
|             'author'    =>  _t('%s 发布的文章')
 | |
|         ), '', ' - '); ?><?php $this->options->title(); ?></title>
 | |
| 
 | |
|     <!-- Google Fonts -->
 | |
|     <link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,600,700,800" rel="stylesheet">
 | |
| 
 | |
|     <!-- FontAwesome Icons -->
 | |
|     <link href="https://cdn.staticfile.org/font-awesome/5.15.3/css/all.css" rel="stylesheet">
 | |
|     
 | |
|     <!-- Argon Theme CSS -->
 | |
|     <link type="text/css" href="<?php $this->options->themeUrl('/assets/css/argon-design-system.min.css')?>" rel="stylesheet">
 | |
|     
 | |
|     <!-- Sky CSS-->
 | |
|     <link type="text/css" href="<?php $this->options->themeUrl('/assets/style.css')?>" rel="stylesheet">
 | |
|     
 | |
|     <!-- JS: jQuery & popper & bootstrap -->
 | |
|     <script src="<?php $this->options->themeUrl('/assets/js/core/jquery.min.js');?>"></script>
 | |
|     <!--<script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>-->
 | |
|     <script src="<?php $this->options->themeUrl('/assets/js/core/popper.min.js');?>"></script>
 | |
|     <script src="<?php $this->options->themeUrl('/assets/js/core/bootstrap.min.js');?>"></script>
 | |
| 
 | |
|     <!-- lately JS -->
 | |
|     <script src="https://tokinx.github.io/lately/lately.min.js"></script>
 | |
| 
 | |
|     <!-- Argon Theme JS -->
 | |
|     <script src="<?php $this->options->themeUrl('/assets/js/argon-design-system.min.js');?>"></script>
 | |
|     
 | |
|     <!-- Highlight.js via jsDelivr -->
 | |
|     <link rel="stylesheet" href="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.1.0/build/styles/default.min.css">
 | |
|     <script src="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.1.0/build/highlight.min.js"></script>
 | |
|     <script>hljs.highlightAll();</script>
 | |
| 
 | |
|     <?php $this->header(); ?>
 | |
| </head>
 | |
| <!--[if lt IE 8]>
 | |
|     <?php _e('当前网页不支持你正在使用的浏览器。为了正常访问, 请升级你的浏览器!'); ?>
 | |
| <![endif]-->
 | |
| <body>
 | |
| 
 | |
| <header id="header" class="clearfix mt-5 mb-4">
 | |
|     <div class="container">
 | |
|         <div class="row">
 | |
|             <div class="site-name col">
 | |
|             <?php if ($this->options->logoUrl): ?>
 | |
|                 <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>
 | |
|             <?php else: ?>
 | |
|                 <a id="logo" href="<?php $this->options->siteUrl(); ?>"><?php $this->options->title() ?></a>
 | |
|         	    <p class="description text-gray"><?php $this->options->description() ?></p>
 | |
|             <?php endif; ?>
 | |
|             </div>
 | |
|             <!--<div class="site-search col-3 kit-hidden-tb">-->
 | |
|             <!--    <form id="search" method="post" action="<?php $this->options->siteUrl(); ?>" role="search">-->
 | |
|             <!--        <label for="s" class="sr-only"><?php _e('搜索关键字'); ?></label>-->
 | |
|             <!--        <input type="text" id="s" name="s" class="text" placeholder="<?php _e('输入关键字搜索'); ?>" />-->
 | |
|             <!--        <button type="submit" class="submit"><?php _e('搜索'); ?></button>-->
 | |
|             <!--    </form>-->
 | |
|             <!--</div>-->
 | |
|         </div><!-- end .row -->
 | |
|     </div>
 | |
| </header><!-- end #header -->
 | |
| 
 | |
| <!-- 如果 nav 放在 header 里,这个 sticky-top 就会被限制在 header 里,暂时只能这么写 -->
 | |
| <nav class="navbar navbar-light navbar-expand sticky-top">
 | |
|     <div class="container">
 | |
|         <ul class="col navbar-nav justify-content-center pr-0">
 | |
|             <li class="nav-item">
 | |
|                 <a class="nav-link nav-link-icon <?php if ($this->is('index')){echo 'text-default';}else{echo 'text-gray';}?>" href="<?php $this->options->siteUrl();?>">
 | |
|                     <i class="fa fa-home"></i> <?php _e('首页') ?>
 | |
|                 </a>
 | |
|             </li>
 | |
|             <?php if (strpos($this->options->frontPage, 'file') !== FALSE) {?>
 | |
|             <li class="nav-item">
 | |
|                 <a class="nav-link nav-link-icon <?php if ($this->is('archive')){echo 'text-default';}else{echo 'text-gray';}?>" href="<?php echo $this->options->siteUrl.$this->options->routingTable['archive']['url'] ?>">
 | |
|                     <i class="fa fa-book"></i> <?php _e('文章') ?>
 | |
|                 </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 <?php if ($this->is('page', $pagelist->slug)){echo 'text-default';}else{echo 'text-gray';}?>" href="<?php echo $pagelist->permalink ?>">
 | |
|                     <?php if ($pagelist->fields->pageIcon != '') {?>
 | |
|                     <i class="fa fa-<?php echo $pagelist->fields->pageIcon ?>"></i>
 | |
|                     <?php } ?>
 | |
|                 <?php echo $pagelist->title ?>
 | |
|                 </a>
 | |
|             </li>
 | |
|             <?php endwhile;?>
 | |
|         </ul>
 | |
|     </div>
 | |
| </nav>
 | |
| <script>$(document).ready(function(){$(".navbar ul.navbar-nav li:last-child").addClass("mr-0");});</script>
 | |
| 
 | |
| <div id="body">
 | |
|     <div class="container">
 | |
|         <div class="row">
 |