头部统一设置:
<@_category id=id>
<#assign category=object/>
<#assign attribute=getCategoryAttribute(id)/>
</@_category>
内容:
<@_content id=id>恒驰新能源汽车
        <#assign content=object/>()
        <#assign attribute=getContentAttribute(id)/>
</@_content>
<meta name="keywords" content="<#list getKeywords(content.title) as a>${a}<#sep>,</#list>">
<mate name="description" content="${content.description}">
<title>${content.tite}</title>
Banner的动态导入:
例子:<img src="${(site.dData.aadaw)!}" />
添加元数据
利用模板帮助--------->扩展字段可以取出字段
页面的页面管理可以给元数据赋值:
当前位置
测试接口
localhost:8082/interface.html
1.模板创建 分类创建 :  www.publiccms/introduction/2017/03-25/321.html
2.网站创建:  www.publiccms/introduction/2017/03-25/323.html 静态变动态
(1)  文件路径的修改: ${site.sitePath}
(2) Logo的添加: logo使用的地方很多,所以保存为站点配置
(3) 带文章的分类
动态加载导航:
动态加载内容:
添加子分类重用模板:(cms的添加子分类有bug,需要手动添加)
修改url链接
<#if category.childIds?has_content>
    <li>
        <b></b>
        <a href="${category.url}">${category.name}</a>
    </li>
    <@_categoryList parentId=category.id>
    <#list page.list as a>
        <li>
            <b></b><a href="${a.url!}">${a.name}</a></li>
    </#list>
    </@_categoryList>
<#else>
    <@_category id=category.parentId>
    <li>
        <b></b>
        <a href="${object.url!}">${object.name}</a>
    </li>
    </@_category>
    <@_categoryList parentId=category.parentId typeId=typeId allowContribute=allowContribute pageIndex=pageIndex count=count>
        <#list page.list as a>
            <li>
                <b></b><a href="${a.url!}">${a.name}</a>
            </li>
        </#list>
    </@_categoryList>
</#if>
(4) 公共区块(头部导航,尾部等): 18min ------------页面片段(静态)
(5) 新闻: 35min
上传模板,修改代码,title使用attribute.title比较好,可以在seo修改.