[backend/razor] Update FrontendSPA.cshtml to conform to new code style
This commit is contained in:
parent
35148d7796
commit
b27572bf27
1 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
@page
|
@page
|
||||||
@using Iceshrimp.Backend.Core.Configuration
|
@using Iceshrimp.Backend.Core.Configuration
|
||||||
@using Microsoft.Extensions.Options
|
@using Microsoft.Extensions.Options
|
||||||
@inject IOptions<Config.InstanceSection> config
|
@inject IOptions<Config.InstanceSection> Config
|
||||||
@{
|
@{
|
||||||
Layout = null;
|
Layout = null;
|
||||||
}
|
}
|
||||||
|
@ -12,9 +12,9 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8"/>
|
<meta charset="utf-8"/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
<meta name="version" content="@config.Value.RawVersion"/>
|
<meta name="version" content="@Config.Value.RawVersion"/>
|
||||||
<meta name="codename" content="@config.Value.Codename"/>
|
<meta name="codename" content="@Config.Value.Codename"/>
|
||||||
<meta name="commit" content="@config.Value.CommitHash"/>
|
<meta name="commit" content="@Config.Value.CommitHash"/>
|
||||||
<title>Iceshrimp.Frontend</title>
|
<title>Iceshrimp.Frontend</title>
|
||||||
<base href="/"/>
|
<base href="/"/>
|
||||||
<link rel="stylesheet" href="~/css/bootstrap/bootstrap.min.css"/>
|
<link rel="stylesheet" href="~/css/bootstrap/bootstrap.min.css"/>
|
||||||
|
|
Loading…
Add table
Reference in a new issue