ClassCMS

template目录

模板中需要引用图片,文件等资源需要调用当前应用下的模板目录路径,可以使用template语法输出目录名.

如当前应用是test123,当test123下属的模板使用以下代码,将输出模板路径

{template} 输出 /class/test/

如当前应用配置了template_dir 则系统会自动加上template_dir的值

如template_dir=template

{template} 输出 /class/test/template/

使用图片

<img src="{template}images/logo.png">

使用js

<script src="{template}js/js.js"></script>

使用css

<link rel="stylesheet" href="{template}css/style.css">

其它应用的模板目录

<script src="{template layui}layui.js"></script>