This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
redemption/module/macro.ftl
7Wate 68d3411d2e
feature(init): Initialize the project
Add normalize.css、animate.min.css and main.css。
Edit README and theme config。
2021-12-28 09:40:30 +08:00

39 lines
964 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<#macro layout title>
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="keywords" content="${meta_keywords!}"/>
<meta name="description" content="${meta_description!}" />
<#--
公共 head 代码详情请参考https://docs.halo.run/zh/developer-guide/theme/public-template-tag
包含Favicon自定义 head 等
-->
<@global.head />
<title>${title}</title>
<#--
样式 CSS 代码
-->
<link rel="stylesheet" href="${theme_base!}/source/css/normalize.css"/>
<link rel="stylesheet" href="${theme_base!}/source/css/animate.min.css"/>
<link rel="stylesheet" href="${theme_base!}/source/css/main.css"/>
</head>
<body>
<#include "menu.ftl">
<#nested >
<#--
公共底部代码详情请参考https://docs.halo.run/zh/developer-guide/theme/public-template-tag
包含:统计代码,底部信息
-->
<@global.footer />
</body>
</html>
</#macro>