123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="zh-cn">
- <head>
- <title>@Page.Title</title>
- @if (!string.IsNullOrWhiteSpace(Page.Description))
- {
- <meta name="description" content="@Page.Description" />
- }
- @if (!string.IsNullOrWhiteSpace(Page.Keywords))
- {
- <meta name="keywords" content="@Page.Keywords" />
- }
- <meta name="copyright" content="彩吧助手(www.55128.cn)" />
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
- <link rel="icon" type="image/x-icon" href="/static/images/favicon.ico" mce_href="/static/images/favicon.ico">
- @Html.Raw(Statics.GetStatics("base:charts"))
- @Html.Raw(Statics.GetStatics("tool", "css"))
- @Html.Raw(Statics.GetStatics("ft-carousel", "css"))
- @Html.Raw(Statics.GetStatics("iconfont:jquery:function:trendChart2"))
- @Html.Raw(Statics.GetStatics("tool", "js"))
- @Html.Raw(Statics.GetStatics("ft-carousel", "js"))
- </head>
- <body style="">
- @*@{Html.RenderAction("hb", "Home", new { });}*@
- <div class="header">
- @Html.Action("header", "Shared")
- @RenderPage("~/Views/Shared/_Advertisement.cshtml")
- @RenderBody()
- </div>
- <div class="footer mb10">
- @RenderPage("~/Views/Shared/_Hot.cshtml")
- </div>
- <div class="wrap">
- @Html.Action("_Links", "Shared")
- </div>
- @{Html.RenderAction("gg", "Home", new { });}
- @RenderPage("~/Views/Shared/footer.cshtml")
- </body>
- </html>
|