Init
This commit is contained in:
46
Prefab.Web/Components/App.razor
Normal file
46
Prefab.Web/Components/App.razor
Normal file
@@ -0,0 +1,46 @@
|
||||
@using System.Globalization
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Prefab</title>
|
||||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
<base href="/"/>
|
||||
<ResourcePreloader/>
|
||||
|
||||
<script src="_content/Telerik.UI.for.Blazor/js/telerik-blazor.js"></script>
|
||||
|
||||
<!-- fonts -->
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,600i,700,700i">
|
||||
|
||||
<!-- css -->
|
||||
<link rel="stylesheet" href="@Assets["vendor/bootstrap/css/bootstrap.min.css"]"/>
|
||||
<link rel="stylesheet" href="_content/Telerik.UI.for.Blazor/css/kendo-theme-default/all.css"/>
|
||||
<link rel="stylesheet" href="@Assets["css/style.css"]" />
|
||||
@if (CultureInfo.CurrentUICulture.TextInfo.IsRightToLeft)
|
||||
{
|
||||
<link rel="stylesheet" href="@Assets["css/style.rtl.css"]" />
|
||||
}
|
||||
else
|
||||
{
|
||||
<link rel="stylesheet" href="@Assets["css/style.ltr.css"]" />
|
||||
}
|
||||
<link rel="stylesheet" href="@Assets["app.css"]"/>
|
||||
<link rel="stylesheet" href="@Assets["_content/Prefab.Web.Client/Prefab.Web.Client.styles.css"]"/>
|
||||
<link rel="stylesheet" href="@Assets["Prefab.Web.styles.css"]"/>
|
||||
|
||||
<ImportMap/>
|
||||
|
||||
<link rel="icon" type="image/png" href="favicon.png"/>
|
||||
<HeadOutlet @rendermode="InteractiveAuto"/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<Routes @rendermode="InteractiveAuto" />
|
||||
<ReconnectModal />
|
||||
<script src="@Assets["_framework/blazor.web.js"]"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user