24 lines
762 B
Plaintext
24 lines
762 B
Plaintext
|
@using YaeBlog.Core.Models
|
||
|
@inject BlogOptions BlogOptionsInstance
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8"/>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||
|
<base href="/"/>
|
||
|
<link href="@($"{BlogOptionsInstance.ProjectName}.styles.css")" rel="stylesheet"/>
|
||
|
<link href="_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css" rel="stylesheet" />
|
||
|
<link href="_content/YaeBlog.Theme.FluentUI/globals.css" rel="stylesheet"/>
|
||
|
<HeadOutlet/>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<Routes/>
|
||
|
<script src="_framework/blazor.web.js"></script>
|
||
|
<script src="_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.lib.module.js" type="module" async></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|