57 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
    <head>
 | 
						|
        <!-- 加载样式及META信息 -->
 | 
						|
        {include file="common/meta" /}
 | 
						|
    </head>
 | 
						|
    <body class="hold-transition {$Think.config.fastadmin.adminskin|default='skin-black-blue'} sidebar-mini {:$Think.cookie.sidebar_collapse?'sidebar-collapse':''} fixed {:$Think.config.fastadmin.multipletab?'multipletab':''} {:$Think.config.fastadmin.multiplenav?'multiplenav':''}" id="tabs">
 | 
						|
 | 
						|
        <div class="wrapper">
 | 
						|
 | 
						|
            <!-- 头部区域 -->
 | 
						|
            <header id="header" class="main-header">
 | 
						|
                {if preg_match('/\/admin\/|\/admin\.php|\/admin_d75KABNWt\.php/i', url())}
 | 
						|
                <div class="alert alert-danger-light text-center" style="margin-bottom:0;border:none;">
 | 
						|
                    {:__('Security tips')}
 | 
						|
                </div>
 | 
						|
                {/if}
 | 
						|
 | 
						|
                {include file='common/header' /}
 | 
						|
            </header>
 | 
						|
 | 
						|
            <!-- 左侧菜单栏 -->
 | 
						|
            <aside class="main-sidebar">
 | 
						|
                {include file='common/menu' /}
 | 
						|
            </aside>
 | 
						|
 | 
						|
            <!-- 主体内容区域 -->
 | 
						|
            <div class="content-wrapper tab-content tab-addtabs">
 | 
						|
                {if $fixedmenu}
 | 
						|
                <div role="tabpanel" class="tab-pane {:$referermenu?'':'active'}" id="con_{$fixedmenu.id}">
 | 
						|
                    <iframe src="{$fixedmenu.url}{:stripos($fixedmenu.url, '?') !== false ? '&' : '?'}addtabs=1" width="100%" height="100%" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling-x="no" scrolling-y="auto" allowtransparency="yes"></iframe>
 | 
						|
                </div>
 | 
						|
                {/if}
 | 
						|
                {if $referermenu}
 | 
						|
                <div role="tabpanel" class="tab-pane active" id="con_{$referermenu.id}">
 | 
						|
                    <iframe src="{$referermenu.url}{:stripos($referermenu.url, '?') !== false ? '&' : '?'}addtabs=1" width="100%" height="100%" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling-x="no" scrolling-y="auto" allowtransparency="yes"></iframe>
 | 
						|
                </div>
 | 
						|
                {/if}
 | 
						|
            </div>
 | 
						|
 | 
						|
            <!-- 底部链接,默认隐藏 -->
 | 
						|
            <footer class="main-footer hide">
 | 
						|
                <div class="pull-right hidden-xs">
 | 
						|
                </div>
 | 
						|
                <strong>Copyright © 2017-{:date("Y")} <a href="__PUBLIC__">{$site.name}</a>.</strong> All rights reserved.
 | 
						|
            </footer>
 | 
						|
 | 
						|
            <!-- 右侧控制栏 -->
 | 
						|
            <div class="control-sidebar-bg"></div>
 | 
						|
            {include file="common/control" /}
 | 
						|
        </div>
 | 
						|
 | 
						|
        <!-- 加载JS脚本 -->
 | 
						|
        {include file="common/script" /}
 | 
						|
    </body>
 | 
						|
</html>
 |