Skip to content

Commit

Permalink
Rename site, it has nothing to do with queueing anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
NixFey committed Feb 28, 2024
1 parent 76f71d4 commit 2413698
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
@inject GlobalState GlobalState

@{
var siteName = "FiM AV Admin";
}

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>@ViewData["Title"] - fim_queueing_admin</title>
<title>@ViewData["Title"] - @siteName</title>
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true"/>
@await RenderSectionAsync("Styles", required: false)
Expand All @@ -14,7 +18,7 @@
<header>
<nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
<div class="container-fluid">
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">fim_queueing_admin</a>
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">@siteName</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target=".navbar-collapse" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
Expand Down Expand Up @@ -59,7 +63,7 @@
<footer class="border-top footer text-muted">
<div class="container">
<cache expires-after="TimeSpan.FromDays(1)">
fim_queueing_admin - FIM AV use only - Version: @GlobalState.VersionInfo
@siteName - FIM AV Staff use only - Version: @GlobalState.VersionInfo
</cache>
</div>
</footer>
Expand Down

0 comments on commit 2413698

Please sign in to comment.