2022-08-02 20:48:54 +08:00
|
|
|
<!--
|
|
|
|
* @Author: TaoLer <alipay_tao@qq.com>
|
|
|
|
* @Date: 2021-12-06 16:04:51
|
|
|
|
* @LastEditTime: 2022-05-11 12:01:15
|
|
|
|
* @LastEditors: TaoLer
|
|
|
|
* @Description: 搜索引擎SEO优化设置
|
|
|
|
* @FilePath: \TaoLer\view\taoler\index\error\404.html
|
|
|
|
* Copyright (c) 2020~2022 https://www.aieok.com All rights reserved.
|
|
|
|
-->
|
2021-11-02 15:40:58 +08:00
|
|
|
{extend name="public/base" /}
|
|
|
|
|
|
|
|
{block name="title"}404 - {$sysInfo.webname}{/block}
|
|
|
|
{block name="keywords"}{$sysInfo.keywords}{/block}
|
|
|
|
{block name="description"}{$sysInfo.descript}{/block}
|
|
|
|
{block name="column"}{include file="public/column" /}{/block}
|
|
|
|
{block name="content"}
|
|
|
|
<div class="layui-container fly-marginTop">
|
|
|
|
<div class="fly-panel">
|
|
|
|
<div class="fly-none">
|
|
|
|
<h2><i class="iconfont icon-404"></i></h2>
|
2022-08-02 20:48:54 +08:00
|
|
|
<p>页面或者数据被<a href="{$Request.domain}"> 纸飞机 </a>运到火星了,啥都看不到了…</p>
|
2021-11-02 15:40:58 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/block}
|
|
|
|
|
|
|
|
{block name="script"}
|
|
|
|
<script>
|
|
|
|
layui.cache.page = 'user';
|
|
|
|
layui.cache.user = {
|
2022-08-02 20:48:54 +08:00
|
|
|
username: "{$user.name??'游客'}"
|
2021-11-02 15:40:58 +08:00
|
|
|
,uid: '{$user.id ?? -1}'
|
2022-08-02 20:48:54 +08:00
|
|
|
,avatar: "{$user['user_img'] ?? '/static/res/images/avatar/00.jpg'}"
|
|
|
|
,experience: "{$user.point ?? ''}"
|
|
|
|
,sex: "{$user.sex ? '女':'男'}"
|
2021-11-02 15:40:58 +08:00
|
|
|
};
|
|
|
|
layui.config({
|
|
|
|
version: "3.0.0"
|
|
|
|
,base: '/static/res/mods/'
|
|
|
|
}).extend({
|
|
|
|
fly: 'index'
|
|
|
|
}).use('fly');
|
|
|
|
</script>
|
|
|
|
{/block}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|