Iceshrimp.NET/Iceshrimp.Backend/Pages/Shared/_Layout.cshtml
2024-09-16 00:53:23 +02:00

24 lines
No EOL
798 B
Text

@inject IOptions<Config.InstanceSection> Instance
@using Iceshrimp.Backend.Core.Configuration
@using Iceshrimp.Backend.Core.Database.Tables
@using Microsoft.Extensions.Options
<!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)
<footer>
<strong>Iceshrimp.NET</strong> v@(Instance.Value.Version)
</footer>
</body>
</html>