Skip to content

Commit

Permalink
fixed http to https in sitemap.cshtml.
Browse files Browse the repository at this point in the history
  • Loading branch information
chase-burandt committed Mar 4, 2024
1 parent 4bfe7fe commit 829c40b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Context.Response.ContentType = "application/xml";
}
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" @(Model.IncludePageImages ? Html.Raw("xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\"") : "")>
<urlset xmlns="https://www.sitemaps.org/schemas/sitemap/0.9" @(Model.IncludePageImages ? Html.Raw("xmlns:image=\"https://www.google.com/schemas/sitemap-image/1.1\"") : "")>
@if (Model.Pages.Any())
{
foreach(var item in Model.Pages)
Expand Down

0 comments on commit 829c40b

Please sign in to comment.