Our.Umbraco.Blend.Sitemap
13.0.5
dotnet add package Our.Umbraco.Blend.Sitemap --version 13.0.5
NuGet\Install-Package Our.Umbraco.Blend.Sitemap -Version 13.0.5
<PackageReference Include="Our.Umbraco.Blend.Sitemap" Version="13.0.5" />
paket add Our.Umbraco.Blend.Sitemap --version 13.0.5
#r "nuget: Our.Umbraco.Blend.Sitemap, 13.0.5"
// Install Our.Umbraco.Blend.Sitemap as a Cake Addin #addin nuget:?package=Our.Umbraco.Blend.Sitemap&version=13.0.5 // Install Our.Umbraco.Blend.Sitemap as a Cake Tool #tool nuget:?package=Our.Umbraco.Blend.Sitemap&version=13.0.5
Blend Sitemap
This is a lightweight package that enables /sitemap.xml at the root of an Umbraco website, supporting multisite environments and culture-specific URLs. This package is configured using appSettings.
Install in Umbraco CMS
Command Line
dotnet add package Our.Umbraco.Blend.Sitemap
Or Nuget
Install-Package Our.Umbraco.Blend.Sitemap
Setup
In the Startup.cs
there is a configuration you need to add for /sitemap.xml
path to render.
In the app.UseUmbraco()
Under .WithEndpoints(u =>
add:
u.EndpointRouteBuilder.MapControllers();
This will use the route /sitemap.xml
declared in the controller.
Default
If there are no settings for the sitemap in the appSettings.json
file nothing will be dispalyed.
Configuration
In the root of your appSettings.json
you can configure custom settings. You can also use appSettings.[Environment].json
to have specific settings for every environment.
"Sitemap": {
"ExcludeBoolFieldAlias": "aliasBoolField",
"CacheMinutes": 15,
"IncludePageImages": false,
"IncludePageDocuments": false,
"DocumentTypes": [
{
"Aliases": [ "homePage" ],
"ChangeFrequency": "daily",
"Priority": 10
},
{
"Aliases": [ "newsList", "eventsList", "landingPage" ],
"ChangeFrequency": "weekly",
"Priority": 9
},
{
"Aliases": [ "standardPage", "news", "event" ],
"ChangeFrequency": "monthly",
"Priority": 5
}
]
}
Sitemap
is the root object and is required.
Sitemap.CacheMinutes
is an optional integer. When filled in the sitemap will be cached for that many minutes before rebuilding. If a document type with an alias is Published, Unpublished, Copied, Moved, Moved To Recycling Deleted, or Rolled Back the cache will be cleared and regenerated on next load. If left blank the default is 15 minutes.
Sitemap.ExcludeBoolFieldAlias
is an optional string. When filled in all documents to display will use this field to determine if that document should be excluded.
Sitemap.IncludePageImage
is an optional boolean default false. When true will add image:image > image:loc into each page that are referenced on the page. Image
and umbracoMediaVectorGraphics
are classified as image types.
Sitemap.IncludePageDocuments
is an optional boolean default false. When true will add document that isn't an image type as a url with the same changeFrequency and priority as the document it was referenced on.
Sitemap.DocumentTypes
is a required array of document type groups to be in the sitemap. Each group change frequency and priority will apply to that group's aliases.
Sitemap.DocumentType.Aliases
is a required array of strings. The aliases of the document type to be included in sitemap.
Sitemap.DocumentType.ChangeFrequency
is an optional string. Options for this are always
, hourly
, daily
, weekly
, monthly
, yearly
, and never
. If not filled in these document types will not have the property.
Sitemap.DocumentType.Priority
is an optional string. Options for this are 0.1
thorugh 0.9
and 1.0
. If not filled in these document types will not have the property.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- Umbraco.Cms.Web.Website (>= 13.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
13.0.5 | 173 | 10/29/2024 |
13.0.4 | 68 | 10/29/2024 |
13.0.3 | 501 | 9/18/2024 |
13.0.2 | 1,124 | 2/29/2024 |
13.0.1 | 338 | 1/25/2024 |
11.1.10 | 134 | 2/29/2024 |
11.1.8 | 720 | 8/10/2023 |
11.1.7 | 216 | 7/21/2023 |
11.1.6 | 315 | 5/12/2023 |
11.1.5 | 391 | 3/9/2023 |
11.1.4 | 235 | 3/9/2023 |
11.1.3 | 243 | 3/8/2023 |
11.1.2 | 242 | 3/7/2023 |
11.1.1 | 311 | 1/31/2023 |
11.1.0 | 295 | 1/26/2023 |
11.0.3 | 287 | 1/26/2023 |
11.0.2 | 279 | 1/25/2023 |
11.0.1 | 282 | 1/24/2023 |
10.0.1 | 257 | 3/4/2024 |
10.0.0 | 768 | 7/29/2022 |
9.1.4 | 471 | 7/29/2022 |
9.1.2 | 452 | 7/29/2022 |
9.0.2 | 475 | 5/16/2022 |