default.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html lang="{$site.languages.frontend}">
  3. <head>
  4. {include file="layout/meta" /}
  5. </head>
  6. <body class="inside-header inside-aside {:defined('IS_DIALOG') && IS_DIALOG ? 'is-dialog' : ''}">
  7. <div id="main" role="main">
  8. <div class="tab-content tab-addtabs">
  9. <div id="content">
  10. <div class="row">
  11. <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
  12. <section class="content-header hide">
  13. <h1>
  14. {:__('Dashboard')}
  15. <small>{:__('Control panel')}</small>
  16. </h1>
  17. </section>
  18. {if !IS_DIALOG}
  19. <!-- RIBBON -->
  20. <div id="ribbon">
  21. <ol class="breadcrumb pull-left">
  22. <li><a href="dashboard" class="addtabsit"><i class="fa fa-dashboard"></i> {:__('Dashboard')}</a></li>
  23. </ol>
  24. <ol class="breadcrumb pull-right">
  25. {foreach $breadcrumb as $vo}
  26. <li><a href="javascript:;" data-url="{$vo.url}">{$vo.title}</a></li>
  27. {/foreach}
  28. </ol>
  29. </div>
  30. <!-- END RIBBON -->
  31. {/if}
  32. <div class="content">
  33. {__CONTENT__}
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. </div>
  40. {include file="layout/script" /}
  41. </body>
  42. </html>