您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_Layout.cshtml 246B

123456789101112
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width" />
  6. <title>@ViewBag.Title</title>
  7. @RenderSection("scripts", required: false)
  8. </head>
  9. <body>
  10. @RenderBody()
  11. </body>
  12. </html>