Iceshrimp.NET/Iceshrimp.Backend/Pages/Shared/_Layout.cshtml
2024-06-21 21:24:06 +02:00

17 lines
No EOL
541 B
Text

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>@(ViewData["title"] ?? "Iceshrimp.NET")</title>
@* ReSharper disable once Html.PathError *@
<link rel="stylesheet" href="~/Iceshrimp.Backend.styles.css"/>
<link rel="stylesheet" href="~/css/default.css"/>
@* ReSharper disable once Html.PathError *@
<link rel="icon" type="image/png" href="~/favicon.png"/>
@await RenderSectionAsync("head", false)
</head>
<body>
@RenderBody()
@await RenderSectionAsync("scripts", false)
</body>
</html>