作者 郭文星

后端页面

1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 -<html>  
3 - <head>  
4 - {include file="common/meta" /}  
5 - </head> 2 +<html lang="{$config.language}">
  3 +<head>
  4 + {include file="common/meta" /}
  5 +</head>
6 6
7 - <body class="inside-header inside-aside {:defined('IS_DIALOG') && IS_DIALOG ? 'is-dialog' : ''}">  
8 - <div id="main" role="main">  
9 - <div class="tab-content tab-addtabs">  
10 - <div id="content">  
11 - <div class="row">  
12 - <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">  
13 - <section class="content-header hide">  
14 - <h1>  
15 - {:__('Dashboard')}  
16 - <small>{:__('Control panel')}</small>  
17 - </h1>  
18 - </section>  
19 - {if !IS_DIALOG && !$Think.config.fastadmin.multiplenav && $Think.config.fastadmin.breadcrumb}  
20 - <!-- RIBBON -->  
21 - <div id="ribbon">  
22 - <ol class="breadcrumb pull-left">  
23 - {if condition="$auth->check('dashboard')"}  
24 - <li><a href="dashboard" class="addtabsit"><i class="fa fa-dashboard"></i> {:__('Dashboard')}</a></li>  
25 - {/if}  
26 - </ol>  
27 - <ol class="breadcrumb pull-right">  
28 - {foreach $breadcrumb as $vo}  
29 - <li><a href="javascript:;" data-url="{$vo.url}">{$vo.title}</a></li>  
30 - {/foreach}  
31 - </ol>  
32 - </div>  
33 - <!-- END RIBBON --> 7 +<body class="inside-header inside-aside {:defined('IS_DIALOG') && IS_DIALOG ? 'is-dialog' : ''}">
  8 +<div id="main" role="main">
  9 + <div class="tab-content tab-addtabs">
  10 + <div id="content">
  11 + <div class="row">
  12 + <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
  13 + <section class="content-header hide">
  14 + <h1>
  15 + {:__('Dashboard')}
  16 + <small>{:__('Control panel')}</small>
  17 + </h1>
  18 + </section>
  19 + {if !IS_DIALOG && !$Think.config.fastadmin.multiplenav && $Think.config.fastadmin.breadcrumb}
  20 + <!-- RIBBON -->
  21 + <div id="ribbon">
  22 + <ol class="breadcrumb pull-left">
  23 + {if condition="$auth->check('dashboard')"}
  24 + <li><a href="dashboard" class="addtabsit"><i class="fa fa-dashboard"></i> {:__('Dashboard')}</a></li>
34 {/if} 25 {/if}
35 - <div class="content">  
36 - {__CONTENT__}  
37 - </div>  
38 - </div> 26 + </ol>
  27 + <ol class="breadcrumb pull-right">
  28 + {foreach $breadcrumb as $vo}
  29 + <li><a href="javascript:;" data-url="{$vo.url}">{$vo.title}</a></li>
  30 + {/foreach}
  31 + </ol>
  32 + </div>
  33 + <!-- END RIBBON -->
  34 + {/if}
  35 + <div class="content">
  36 + {__CONTENT__}
39 </div> 37 </div>
40 </div> 38 </div>
41 </div> 39 </div>
42 </div> 40 </div>
43 - {include file="common/script" /}  
44 - </body> 41 + </div>
  42 +</div>
  43 +{include file="common/script" /}
  44 +</body>
45 </html> 45 </html>
@@ -288,7 +288,7 @@ return [ @@ -288,7 +288,7 @@ return [
288 //是否默认展示子菜单 288 //是否默认展示子菜单
289 'show_submenu' => false, 289 'show_submenu' => false,
290 //后台皮肤,为空时表示使用skin-black-blue 290 //后台皮肤,为空时表示使用skin-black-blue
291 - 'adminskin' => '', 291 + 'adminskin' => 'skin-blue',
292 //后台是否启用面包屑 292 //后台是否启用面包屑
293 'breadcrumb' => false, 293 'breadcrumb' => false,
294 //是否允许未知来源的插件压缩包 294 //是否允许未知来源的插件压缩包
1 -<IfModule mod_rewrite.c>  
2 - Options +FollowSymlinks -Multiviews  
3 - RewriteEngine On  
4 -  
5 - RewriteCond %{REQUEST_FILENAME} !-d  
6 - RewriteCond %{REQUEST_FILENAME} !-f  
7 - RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]  
8 -</IfModule>