[backend/razor] Add footer

This commit is contained in:
Laura Hausmann 2024-09-16 00:39:46 +02:00
parent 9f2cb34d0e
commit 42eeb9e2b6
No known key found for this signature in database
GPG key ID: D044E84C5BE01605
2 changed files with 8 additions and 2 deletions

View file

@ -40,6 +40,5 @@
}
.note {
padding-inline: 2rem;
background-color: var(--background-body)
}

View file

@ -1,4 +1,8 @@
<!DOCTYPE html>
@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"/>
@ -13,5 +17,8 @@
<body>
@RenderBody()
@await RenderSectionAsync("scripts", false)
<footer>
<strong>Iceshrimp.NET</strong> v@(Instance.Value.Version)
</footer>
</body>
</html>