Skip to content

Commit 41215b1

Browse files
committed
Added other pagetitle to be HTML compliant
1 parent 28fb2ef commit 41215b1

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

src/LinkDotNet.Blog.Web/Features/AboutMe/AboutMePage.razor

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
@inject NavigationManager NavigationManager
77
@inject IOptions<ProfileInformation> ProfileInformation
88

9+
<PageTitle>About Me - @ProfileInformation.Value.Name</PageTitle>
10+
911
@if (AppConfiguration.Value.IsAboutMeEnabled)
1012
{
1113
<OgData Title="@("About Me - " + ProfileInformation.Value.Name)"

src/LinkDotNet.Blog.Web/Features/Archive/ArchivePage.razor

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
@using System.Collections.Immutable
55
@using System.Globalization
66
@inject IRepository<BlogPost> Repository
7+
@inject IOptions<ApplicationConfiguration> AppConfiguration
78

9+
<PageTitle>Archive @AppConfiguration.Value.BlogName</PageTitle>
810
<OgData Title="Archive" Description="Explore all blog posts."></OgData>
911

1012
<div class="container">

src/LinkDotNet.Blog.Web/Features/SupportMe/SupportMePage.razor

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
@if (SupportConfiguration.Value.ShowSupportMePage)
99
{
10+
<PageTitle>Support Me</PageTitle>
1011
<OgData Title="@("Support Me - " + ProfileInformation.Value.Name)"
1112
Description="@("Support Me - " + ProfileInformation.Value.Name)"
1213
Keywords="@($"Donation,Support,{ProfileInformation.Value.Name})")"

0 commit comments

Comments
 (0)