template - 加载模板文件

特别注意,模板必须要加载系统头部和尾部!否则不能使用各种应用插件!

加载系统头部和尾部后,css、js文件查看config.php文件说明进行配置加载

// 加载系统页面,一般是头部和尾部
<template "ui/..." />

// 加载自己模板的页面
<template "own/..." />

加载系统头部

<template "ui/head" />

加载系统尾部

<template "ui/foot" />

加载模板目录下某个模板

<template "own/news/hot" />
// 即加载当前模板news目录下的hot.html文件
大纲