Skip to content

Commit

Permalink
remove default titles
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed May 21, 2023
1 parent 7958688 commit a2e43d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MyApp/Pages/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/svg" href="img/logo.svg">
<title>@ViewData["Title"] - My App</title>
<title>@ViewData["Title"]</title>
<base href="@(RazorSsg.GetBaseHref() ?? "/")"/>
<link rel="stylesheet" href="css/app.css">
@await RenderSectionAsync("head", required:false)
Expand Down
2 changes: 1 addition & 1 deletion MyApp/Pages/Shared/_LayoutContent.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/svg" href="img/logo.svg">
<title>@ViewData["Title"] - ServiceStack</title>
<title>@ViewData["Title"]</title>
<base href="@(RazorSsg.GetBaseHref() ?? "/")" />
<script>
const cls = document.querySelector('html').classList
Expand Down

0 comments on commit a2e43d4

Please sign in to comment.