123456789101112131415161718192021222324 |
- <?php
- $name = '后台管理';
- $view
- ->fetch('title', 'manage/auth.config#title')
- ->fetch(array('meta@content', 1), 'manage/auth.config#title')
- ->fetch(array('meta@content', 2), 'manage/auth.config#title')
- ->fetch(array('meta@content', 3), 'manage/auth.config#title')
-
- ->fetch('#script', '<{Dever::script()}>config.template="<{$data["manage/auth.config"]["template"]}>";config.lib="<{Dever::config("host")->public}>";config.debug=false')
- ->fetch('#style', '<{Dever::load("manage/auth.loading") ? ".content,.content-page{margin-left: 0px;min-height:auto}" : ""}>')
- ->display();
|