12345678910111213141516171819202122 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | home
- |--------------------------------------------------------------------------
- */
- $name = '后台管理';
- $view
- # 定义名称
- ->fetch('title', '<{Maze::$global.base.name}>'. $name)
- ->fetch(array('meta@content', 1), '<{Maze::$global.base.name}>' . $name)
- ->fetch(array('meta@content', 2), '<{Maze::$global.base.name}>' . $name)
- ->fetch(array('meta@content', 3), '<{Maze::$global.base.name}>' . $name)
- # 初始化几个js变量
- ->fetch('script', 'var config={};config.host="<{Maze::url(\'\')}>";config.current="<{Maze::url()}>";config.upload="<{Maze::$global.host.upload}>";config.assets="<{Maze::$global.host.core}>";config.template="<{Maze::load(\'/auth.config#template\')}>";config.lib="<{Maze::$global.host.lib}>"')
- # display
- ->display();
|