ant-design-blazor/site/AntBlazor.Docs.ServerApp/Pages/_Host.cshtml

25 lines
779 B
Plaintext
Raw Normal View History

2019-12-04 16:46:08 +08:00
@page "/"
@namespace AntBlazor.Docs.ServerApp.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2020-03-11 22:17:42 +08:00
<title>Ant Design of Blazor</title>
2019-12-04 16:46:08 +08:00
<base href="~/" />
2020-03-11 22:17:42 +08:00
<link rel="icon" href="logo.png" type="image/x-icon">
2020-03-16 00:30:27 +08:00
@*<link href="_content/AntBlazor/css/ant-design-blazor.css" rel="stylesheet">*@
<link href="_content/AntBlazor.Docs/css/docs.css" rel="stylesheet">
2019-12-04 16:46:08 +08:00
</head>
<body>
<app>
2019-12-05 16:23:33 +08:00
@(await Html.RenderComponentAsync<App>(RenderMode.Server))
2019-12-04 16:46:08 +08:00
</app>
<script src="_framework/blazor.server.js"></script>
2020-03-10 15:25:29 +08:00
<script src="_content/AntBlazor/js/ant-design-blazor.js"></script>
2019-12-04 16:46:08 +08:00
</body>
</html>