mirror of
https://github.com/Stefan-5422/-T5-Elektrifikatsiya.git
synced 2026-09-10 07:36:02 +02:00
75 lines
2.7 KiB
Plaintext
75 lines
2.7 KiB
Plaintext
@using Microsoft.AspNetCore.Components.Web
|
|
@namespace Elektrifikatsiya.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" />
|
|
|
|
<base href="~/" />
|
|
|
|
<component type="typeof(HeadOutlet)" render-mode="Server" />
|
|
<!-- Material CSS -->
|
|
<link href="css/material/material.min.css" rel="stylesheet">
|
|
|
|
<!-- Add Material font (Roboto) and Material icon as needed -->
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i|Roboto+Mono:300,400,700|Roboto+Slab:300,400,700" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
|
|
<link href="_content/Blazorise/blazorise.min.css?v=1.1.3.0" rel="stylesheet" />
|
|
<link href="_content/Blazorise.Material/blazorise.material.css" rel="stylesheet" />
|
|
<link href="_content/Blazorise.Icons.Material/blazorise.icons.material.css" rel="stylesheet" />
|
|
|
|
<link rel="stylesheet" href="css/blazor-ui.css" />
|
|
</head>
|
|
<body>
|
|
@RenderBody()
|
|
|
|
<div id="blazor-error-ui">
|
|
<environment include="Staging,Production">
|
|
An error has occurred. This application may no longer respond until reloaded.
|
|
</environment>
|
|
<environment include="Development">
|
|
An unhandled exception has occurred. See browser dev tools for details.
|
|
</environment>
|
|
<a href="" class="reload">Reload</a>
|
|
<a class="dismiss">🗙</a>
|
|
</div>
|
|
|
|
<script src="js/material/material.min.js"></script>
|
|
<script src="_framework/blazor.server.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.7.1/chart.min.js"></script>
|
|
|
|
<script>
|
|
window.blazorExtensions = {
|
|
WriteCookie: function(name, value, days) {
|
|
|
|
var expires;
|
|
if (days) {
|
|
var date = new Date();
|
|
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
|
|
expires = "; expires=" + date.toGMTString();
|
|
}
|
|
else {
|
|
expires = "";
|
|
}
|
|
document.cookie = name + "=" + value + expires + "; path=/;SameSite=Strict";
|
|
},
|
|
|
|
ScrollToId: function(id) {
|
|
const element = document.getElementById(id);
|
|
if (element instanceof HTMLElement) {
|
|
element.scrollIntoView({
|
|
behavior: "smooth",
|
|
block: "start",
|
|
inline: "nearest"
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|