Our.Umbraco.Blend.Sitemap 13.0.2

dotnet add package Our.Umbraco.Blend.Sitemap --version 13.0.2
NuGet\Install-Package Our.Umbraco.Blend.Sitemap -Version 13.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Our.Umbraco.Blend.Sitemap" Version="13.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Our.Umbraco.Blend.Sitemap --version 13.0.2
#r "nuget: Our.Umbraco.Blend.Sitemap, 13.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Our.Umbraco.Blend.Sitemap as a Cake Addin
#addin nuget:?package=Our.Umbraco.Blend.Sitemap&version=13.0.2

// Install Our.Umbraco.Blend.Sitemap as a Cake Tool
#tool nuget:?package=Our.Umbraco.Blend.Sitemap&version=13.0.2

Blend Sitemap


License: MIT NuGet version (Our.Umbraco.Blend.Sitemap)

This is a lightweight package that enables /sitemap.xml at the root of an umbraco website. 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.2 207 2/29/2024
13.0.1 221 1/25/2024
11.1.10 91 2/29/2024
11.1.8 670 8/10/2023
11.1.7 196 7/21/2023
11.1.6 280 5/12/2023
11.1.5 380 3/9/2023
11.1.4 225 3/9/2023
11.1.3 219 3/8/2023
11.1.2 218 3/7/2023
11.1.1 266 1/31/2023
11.1.0 265 1/26/2023
11.0.3 260 1/26/2023
11.0.2 256 1/25/2023
11.0.1 270 1/24/2023
10.0.1 147 3/4/2024
10.0.0 725 7/29/2022
9.1.4 446 7/29/2022
9.1.2 426 7/29/2022
9.0.2 448 5/16/2022