| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html lang="{$config.language}">
- <head>
- <!-- 加载部部样式及META信息 -->
- {include file="common/meta" /}
- </head>
- <body class="hold-transition skin-green sidebar-mini fixed {if $config.fastadmin.multiplenav}multiplenav{/if}" id="tabs">
- <div class="wrapper">
- <!-- 头部区域 -->
- <header id="header" class="main-header">
- {include file='common/header' /}
- </header>
- <!-- 左侧菜单栏 -->
- <aside class="main-sidebar">
- {include file='common/menu' /}
- </aside>
- <!-- 主体内容区域 -->
- <div class="content-wrapper tab-content tab-addtabs">
- </div>
- <!-- 底部链接,默认隐藏 -->
- <footer class="main-footer hide">
- <div class="pull-right hidden-xs">
- </div>
- <strong>Copyright © 2017-2018 <a href="https://www.fastadmin.net">Fastadmin</a>.</strong> All rights reserved.
- </footer>
- <!-- 右侧控制栏 -->
- <div class="control-sidebar-bg"></div>
- {include file="common/control" /}
- </div>
- <!-- 加载JS脚本 -->
- {include file="common/script" /}
- </body>
- </html>
|