2021-12-28 08:36:20 +08:00
|
|
|
<#macro layout title>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="zh">
|
2021-12-28 17:05:11 +08:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
|
|
|
|
<title>${title}</title>
|
|
|
|
<meta name="keywords" content="${meta_keywords!}"/>
|
|
|
|
<meta name="description" content="${meta_description!}" />
|
|
|
|
<@global.head />
|
2022-01-14 14:49:51 +08:00
|
|
|
|
2021-12-31 15:53:37 +08:00
|
|
|
|
|
|
|
<#-- 公共样式表 -->
|
2021-12-29 17:46:17 +08:00
|
|
|
<link rel="stylesheet" href="${theme_base!}/source/plugins/normalize.css"/>
|
|
|
|
<link rel="stylesheet" href="${theme_base!}/source/plugins/animate.css"/>
|
|
|
|
<link rel="stylesheet" href="${theme_base!}/source/plugins/remixicon/remixicon.css"/>
|
|
|
|
<#-- <link rel="stylesheet" href="${theme_base!}/source/plugins/typo.css"/> -->
|
|
|
|
<#-- <link rel="stylesheet" href="${theme_base!}/source/plugins/han.css"/> -->
|
2021-12-31 15:53:37 +08:00
|
|
|
<link rel="stylesheet" href="//unpkg.com/heti/umd/heti.min.css">
|
2021-12-28 17:05:11 +08:00
|
|
|
<link rel="stylesheet" href="${theme_base!}/source/css/color.css"/>
|
2021-12-31 15:53:37 +08:00
|
|
|
<link rel="stylesheet" href="${theme_base!}/source/css/markdown.css"/>
|
2021-12-28 17:05:11 +08:00
|
|
|
<link rel="stylesheet" href="${theme_base!}/source/css/redemption.css"/>
|
2021-12-31 15:53:37 +08:00
|
|
|
|
2022-01-04 17:16:08 +08:00
|
|
|
|
|
|
|
|
2021-12-31 15:53:37 +08:00
|
|
|
|
2021-12-28 17:05:11 +08:00
|
|
|
</head>
|
2022-01-04 17:16:08 +08:00
|
|
|
<body>
|
|
|
|
<div class="container animate__animated animate__fadeInDown">
|
2021-12-31 15:53:37 +08:00
|
|
|
|
2022-01-15 01:02:47 +08:00
|
|
|
<#-- 主体 -->
|
|
|
|
<#nested >
|
|
|
|
|
|
|
|
<#-- 脚注 -->
|
|
|
|
<footer>
|
|
|
|
<#-- <#include "menu.ftl"> -->
|
|
|
|
<div class="copyright">
|
|
|
|
<a href="https://www.7wate.com">Designed by 7Wate.</a>
|
|
|
|
<a href="https://halo.run">Proudly published with Halo</a>
|
|
|
|
</div>
|
|
|
|
<@global.footer />
|
|
|
|
</footer>
|
2022-01-04 17:16:08 +08:00
|
|
|
|
|
|
|
</div>
|
2022-01-15 01:02:47 +08:00
|
|
|
|
|
|
|
<#-- 自定义JS代码 -->
|
|
|
|
<script src="${theme_base!}/source/js/redemption.js"></script>
|
|
|
|
|
2021-12-31 15:53:37 +08:00
|
|
|
<#-- 公共JS代码 -->
|
|
|
|
<script src="//unpkg.com/heti/umd/heti-addon.min.js"></script>
|
2021-12-29 17:46:17 +08:00
|
|
|
<script>
|
|
|
|
const heti = new Heti('.heti');
|
|
|
|
heti.autoSpacing();
|
|
|
|
</script>
|
2022-01-04 17:16:08 +08:00
|
|
|
|
2021-12-28 17:05:11 +08:00
|
|
|
</body>
|
2022-01-04 17:16:08 +08:00
|
|
|
|
2021-12-28 08:36:20 +08:00
|
|
|
</html>
|
|
|
|
</#macro>
|
|
|
|
|