分类 FreeMarker 下的文章

代码:

1. 创建public.ftl文件;用于存放各个公共宏macro

<#--公共顶部-->
<#macro header title="默认文字" keywords="默认文字" description="默认文字">
<!DOCTYPE html>
<html>
    <head lang="en">
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;" />
        <meta name="format-detection" content="telephone=no" />
        <title>${title}</title>
        <meta name="keywords" content="${keywords}" />
        <meta name="description" content="${description}" />
        
        <link rel="stylesheet" type='text/css' href="/static/style/common.css"/>
        
        <#nested>
        
    </head>
    <body>
</#macro>
 
<#--公共底部-->
<#macro footer>
 
    <script type="text/javascript" src="/static/js/common.js"></script>
    
    <#nested>
    
    </body>
</html>
</#macro>

- 阅读剩余部分 -