You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default.html 4.1 KiB

4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta name="description" content="">
  8. <meta name="author" content="">
  9. <title>{$title} - FastAdmin</title>
  10. <!-- Bootstrap Core CSS -->
  11. <link href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
  12. <!-- Custom CSS -->
  13. <link href="__ADDON__/css/common.css" rel="stylesheet">
  14. <!-- Plugin CSS -->
  15. <link href="https://cdn.staticfile.org/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
  16. <link href="https://cdn.staticfile.org/simple-line-icons/2.4.1/css/simple-line-icons.min.css" rel="stylesheet">
  17. <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  18. <!--[if lt IE 9]>
  19. <script src="https://cdn.staticfile.org/html5shiv/3.7.3/html5shiv.min.js"></script>
  20. <script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
  21. <![endif]-->
  22. </head>
  23. <body>
  24. <!-- Navigation -->
  25. <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
  26. <div class="container">
  27. <!-- Brand and toggle get grouped for better mobile display -->
  28. <div class="navbar-header">
  29. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
  30. <span class="sr-only">Toggle navigation</span>
  31. <span class="icon-bar"></span>
  32. <span class="icon-bar"></span>
  33. <span class="icon-bar"></span>
  34. </button>
  35. <a class="navbar-brand" href="{:addon_url('epay/index/index')}">FastAdmin</a>
  36. </div>
  37. <!-- Collect the nav links, forms, and other content for toggling -->
  38. <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
  39. <ul class="nav navbar-nav navbar-right">
  40. <li>
  41. </li>
  42. {if $user}
  43. <li class="dropdown">
  44. <a href="#" class="dropdown-toggle" data-toggle="dropdown">欢迎你! {$user.nickname}<b class="caret"></b></a>
  45. <ul class="dropdown-menu">
  46. <li>
  47. <a href="{:url('index/user/index')}">会员中心</a>
  48. </li>
  49. <li>
  50. <a href="{:url('index/user/profile')}">个人资料</a>
  51. </li>
  52. <li>
  53. <a href="{:url('index/user/logout')}">退出登录</a>
  54. </li>
  55. </ul>
  56. </li>
  57. {else /}
  58. <li class="dropdown">
  59. <a href="#" class="dropdown-toggle" data-toggle="dropdown">会员中心 <b class="caret"></b></a>
  60. <ul class="dropdown-menu">
  61. <li>
  62. <a href="{:url('index/user/login')}">登录</a>
  63. </li>
  64. <li>
  65. <a href="{:url('index/user/register')}">注册</a>
  66. </li>
  67. </ul>
  68. </li>
  69. {/if}
  70. </ul>
  71. </div>
  72. <!-- /.navbar-collapse -->
  73. </div>
  74. <!-- /.container -->
  75. </nav>
  76. {__CONTENT__}
  77. <div class="container">
  78. <!-- Footer -->
  79. <footer>
  80. <div class="row">
  81. <div class="col-lg-12">
  82. <hr>
  83. <p>Copyright &copy; <a href="https://www.fastadmin.net">FastAdmin</a> 2017-1019</p>
  84. </div>
  85. </div>
  86. </footer>
  87. </div>
  88. <!-- /.container -->
  89. <!-- jQuery -->
  90. <script src="https://cdn.staticfile.org/jquery/2.1.4/jquery.min.js"></script>
  91. <!-- Bootstrap Core JavaScript -->
  92. <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
  93. <script src="__CDN__/assets/libs/fastadmin-layer/dist/layer.js"></script>
  94. <script src="__ADDON__/js/common.js"></script>
  95. </body>
  96. </html>