74 lines
2.7 KiB
HTML
74 lines
2.7 KiB
HTML
<!--
|
|
* @Author: TaoLer <alipay_tao@qq.com>
|
|
* @Date: 2021-12-06 16:04:51
|
|
* @LastEditTime: 2022-08-10 16:50:38
|
|
* @LastEditors: TaoLer
|
|
* @Description: 搜索引擎SEO优化设置
|
|
* @FilePath: \github\TaoLer\view\taoler\index\public\base.html
|
|
* Copyright (c) 2020~2022 https://www.aieok.com All rights reserved.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="applicable-device" content="pc,mobile" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta name="renderer" content="webkit" />
|
|
<meta name="force-rendering" content="webkit" />
|
|
<!-- seo -->
|
|
<title>{block name="title"}标题{/block}</title>
|
|
<meta name="keywords" content="{block name='keywords'}关键词{/block}" />
|
|
<meta name="description" content="{block name='description'}描述{/block}" />
|
|
<meta name="Copyright" content="{$sysInfo.webname}" />
|
|
{block name="ogtitle"}{/block}
|
|
{block name="ogdescription"} {/block}
|
|
<meta property="og:url" content="{$Request.domain}{$Request.url}" />
|
|
<meta property="og:site_name" content="{$sysInfo.webname}" />
|
|
{block name="ogimage"} {/block}
|
|
{block name="meta"}{/block}
|
|
|
|
<script src="{$Request.domain}/static/component/layui/layui.js" charset="utf-8"></script>
|
|
<script src="/static/res/mods/toast.js"></script>
|
|
<script src="/static/notify.js"></script>
|
|
<!-- 样式 -->
|
|
<link rel="canonical" href="{$Request.domain}{$Request.url}">
|
|
<link rel="stylesheet" href="{$Request.domain}/static/res/css/font_24081_qs69ykjbea.css" />
|
|
<link rel="stylesheet" href="{$Request.domain}/static/component/layui/css/layui.css">
|
|
<link rel="stylesheet" href="{$Request.domain}/static/res/css/global.css">
|
|
<link rel="stylesheet" href="/static/component/pear/css/module/toast.css">
|
|
{block name="link"}{/block}
|
|
<script src="/static/share/plusShare.js" type="text/javascript" charset="utf-8"></script>
|
|
{$sysInfo.showlist|raw}
|
|
</head>
|
|
<body >
|
|
{include file="public/header" /}
|
|
{block name="column"}导航{/block}
|
|
{block name="content"}内容{/block}
|
|
{include file="public/footer" /}
|
|
{include file="public/js" /}
|
|
<script>
|
|
var element = layui.element;
|
|
var toast = layui.toast;
|
|
var notify = layui.notify;
|
|
layui.cache.page = "{$jspage}";
|
|
layui.cache.user = {
|
|
username: "{$user.name ?? '游客'}"
|
|
,uid: "{$user.id ?? -1}"
|
|
,avatar: '/static/res/images/avatar/00.jpg'
|
|
,experience: "{$user.point ?? 0}"
|
|
,sex: "{$user.sex ? '女':'男'}"
|
|
};
|
|
layui.config({
|
|
version: "3.0.0"
|
|
,base: "/static/res/mods/"
|
|
}).extend({
|
|
fly: 'index'
|
|
}).use('fly');
|
|
</script>
|
|
{block name="script"}{/block}
|
|
</body>
|
|
</html>
|
|
|