Blog/Components/App.razor 525 B · 24 lines · raw · history

1 <!DOCTYPE html>
2 <html lang="en">
3
4 <head>
5 <meta charset="utf-8"/>
6 <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
7 <base href="/"/>
8 <link rel="stylesheet" href="@Assets["app.css"]"/>
9 <link rel="stylesheet" href="@Assets["Blog.styles.css"]"/>
10 <ImportMap/>
11 <HeadOutlet/>
12 </head>
13
14 <body class="center">
15 <Routes/>
16 <script src="@Assets["_framework/blazor.web.js"]" autostart="false"></script>
17 <script>
18 Blazor.start({
19 webAssembly: {}
20 });
21 </script>
22 </body>
23
24 </html>