include 标签是模板开发中最最常用的标签之一,它可以在模板中包含其它模板的内容;用法如下:

  1. <include file='模版1,模版2,...' />
请不要在include 的模板文件中使用模板布局或者模板继承

file 属性的定义规则:

以前台simlpeboot3主题为例:

控制器/操作

  1. <include file="public/header" />
  2. <!--
  3. 以上表示包含当前应用视图下 public/header.html 文件,
  4. 假设当前应用是portal应用,实际文件路径为:
  5. public/themes/simpleboot3/portal/public/header.html
  6. -->

应用@目录1/文件名 应用@文件名

  1. <include file="portal@index/head" />
  2. <!--
  3. 以上表示包含当前主题portal目录下的index/head.html 文件,
  4. 实际文件路径为:
  5. public/themes/simpleboot3/portal/index/head.html
  6. -->
  1. <include file="public@header" />
  2. <!--
  3. 以上表示包含当前主题public目录下的header.html 文件,
  4. 实际文件路径为:
  5. public/themes/simpleboot3/public/header.html
  6. -->

原文: https://www.thinkcmf.com/docs/cmf/包含文件.html