24 lines
No EOL
798 B
Text
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> |