[backend/razor] Add footer
This commit is contained in:
parent
9f2cb34d0e
commit
42eeb9e2b6
2 changed files with 8 additions and 2 deletions
|
@ -40,6 +40,5 @@
|
|||
}
|
||||
|
||||
.note {
|
||||
padding-inline: 2rem;
|
||||
background-color: var(--background-body)
|
||||
}
|
|
@ -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>
|
Loading…
Add table
Reference in a new issue