_ssresult.cshtml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <head>
  4. <title>@Page.Title</title>
  5. @if (!string.IsNullOrWhiteSpace(Page.Description))
  6. {
  7. <meta name="description" content="@Page.Description" />
  8. }
  9. @if (!string.IsNullOrWhiteSpace(Page.Keywords))
  10. {
  11. <meta name="keywords" content="@Page.Keywords" />
  12. }
  13. <meta name="copyright" content="彩吧助手(www.55128.cn)" />
  14. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  15. <link rel="icon" type="image/x-icon" href="/static/images/favicon.ico" mce_href="/static/images/favicon.ico">
  16. @Html.Raw(Statics.GetStatics("base:charts"))
  17. @Html.Raw(Statics.GetStatics("tool", "css"))
  18. @Html.Raw(Statics.GetStatics("ft-carousel", "css"))
  19. @Html.Raw(Statics.GetStatics("iconfont:jquery:function:trendChart2"))
  20. @Html.Raw(Statics.GetStatics("tool", "js"))
  21. @Html.Raw(Statics.GetStatics("ft-carousel", "js"))
  22. </head>
  23. <body style="">
  24. @*@{Html.RenderAction("hb", "Home", new { });}*@
  25. <div class="header">
  26. @Html.Action("header", "Shared")
  27. @RenderPage("~/Views/Shared/_Advertisement.cshtml")
  28. @RenderBody()
  29. </div>
  30. <div class="footer mb10">
  31. @RenderPage("~/Views/Shared/_Hot.cshtml")
  32. </div>
  33. <div class="wrap">
  34. @Html.Action("_Links", "Shared")
  35. </div>
  36. @{Html.RenderAction("gg", "Home", new { });}
  37. @RenderPage("~/Views/Shared/footer.cshtml")
  38. </body>
  39. </html>