Umbraco.Community.Templates.Clean 7.0.5

dotnet new install Umbraco.Community.Templates.Clean::7.0.5
                    
This package contains a .NET Template Package you can call from the shell/command line.

Clean Starter Kit for Umbraco

NuGet Version NuGet Downloads Release Build License GitHub Stars

A modern, clean, and fully-featured starter kit for Umbraco CMS that provides a ready-to-use blog theme with headless/API capabilities. Built with Bootstrap and designed to get you up and running quickly with Umbraco 17.

Features

  • Modern Blog Theme: Clean, responsive design built with Bootstrap
  • Pre-configured Content Types: Blog posts, categories, tags, and more
  • Headless/API Support: Full Content Delivery API integration with Next.js revalidation support
  • API Endpoints: Built-in endpoints for dictionary, search, and contact functionality
  • OpenAPI Documentation: Swagger UI for exploring and testing API endpoints
  • SQLite by Default: Quick setup with SQLite database for development

Clean targets Umbraco 17 (LTS). For complete version mapping for previous versions, see the Versioning and Releases documentation.

For detailed information about the package architecture and the different NuGet packages, see the Package Architecture documentation.

Documentation

For detailed documentation about this package and the repository, please see the docs.

GitHub Workflows and Automation

The project uses automated workflows for continuous integration and deployment. Please see the workflow worflow docs

Installation

Prerequisites

Download and install the latest .NET 10 SDK or higher for your operating system (Windows, Mac, or Linux).


Umbraco 17 (LTS)

NuGet Package Method

# Ensure we have the version specific Umbraco templates
dotnet new install Umbraco.Templates::17.1.0 --force

# Create solution/project
dotnet new sln --name "MySolution"
dotnet new umbraco --force -n "MyProject" --friendly-name "Administrator" --email "admin@example.com" --password "1234567890" --development-database-type SQLite
dotnet sln add "MyProject"

# Add Clean package
dotnet add "MyProject" package Clean --version 7.0.5

# Run the project
dotnet run --project "MyProject"

# Login with admin@example.com and 1234567890
# Save and publish the home page and save one of the dictionary items in the translation section
# The site should now be running and visible on the front end

⚠️ Important: After your site is set up and running, switch from the Clean package to Clean.Core to prevent views and assets from being overridden:

dotnet remove "MyProject" package Clean
dotnet add "MyProject" package Clean.Core --version 7.0.5

dotnet Template Method

# Install the Clean Starter Kit template
dotnet new install Umbraco.Community.Templates.Clean::7.0.5 --force

# Create a new project using the template
dotnet new umbraco-starter-clean -n MyProject

# Navigate to the project folder
cd MyProject

# Run the new website
dotnet run --project "MyProject.Blog"

# Login with admin@example.com and 1234567890
# Save and publish the home page and save one of the dictionary items in the translation section
# The site should now be running and visible on the front 

✨ Note: As of version 7.0.0, the template now supports periods in project names (e.g., Company.Website). Previous versions had a limitation that prevented using periods due to internal class naming conflicts, which has been resolved.

Umbraco 13 (LTS)

NuGet Package Method

# Ensure we have the version specific Umbraco templates
dotnet new install Umbraco.Templates::17.0.0-rc4 --force

# Create solution/project
dotnet new sln --name "MySolution"
dotnet new umbraco --force -n "MyProject" --friendly-name "Administrator" --email "admin@example.com" --password "1234567890" --development-database-type SQLite
dotnet sln add "MyProject"

# Add Clean package
dotnet add "MyProject" package Clean --version 7.0.0-rc4

# Run the project
dotnet run --project "MyProject"

# Login with admin@example.com and 1234567890
# Save and publish the home page and save one of the dictionary items in the translation section
# The site should now be running and visible on the front end

⚠️ Important: After your site is set up and running, switch from the Clean package to Clean.Core to prevent views and assets from being overridden:

dotnet remove "MyProject" package Clean
dotnet add "MyProject" package Clean.Core --version 7.0.0-rc4

dotnet Template Method

# Install the Clean Starter Kit template
dotnet new install Umbraco.Community.Templates.Clean::7.0.0-rc4 --force

# Create a new project using the template
dotnet new umbraco-starter-clean -n MyProject

# Navigate to the project folder
cd MyProject

# Run the new website
dotnet run --project "MyProject.Blog"

# Login with admin@example.com and 1234567890
# Save and publish the home page and save one of the dictionary items in the translation section
# The site should now be running and visible on the front end

Getting Started

After installation, you'll need to:

  1. Login to Umbraco: Navigate to /umbraco and login with the credentials you specified (default: admin@example.com / 1234567890)
  2. Publish the Home Page: Go to the Content section and publish the home page
  3. Save Dictionary Items: Navigate to the Translation section and save at least one dictionary item to initialize translations
  4. View Your Site: The frontend should now be accessible at the root URL

Support and Resources


Authors

  • Paul Seal - Main Package
  • Phil Whittaker - Headless Extensions

Legacy Versions

Looking for Clean for Umbraco V9-12? Visit the Clean Starter Kit for Umbraco v9 repository. test

  • net10.0

    • No dependencies.

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
7.0.5 298 1/8/2026
7.0.4 101 1/5/2026
7.0.3 465 12/11/2025
7.0.2 450 12/9/2025
7.0.1 311 11/30/2025
7.0.0 190 11/27/2025
7.0.0-rc4 189 11/26/2025
7.0.0-preview9 182 11/23/2025
7.0.0-preview8 180 11/23/2025
7.0.0-preview7 158 11/23/2025
7.0.0-preview6 156 11/23/2025
7.0.0-preview5 167 11/22/2025
7.0.0-preview17 179 11/26/2025
7.0.0-preview16 190 11/26/2025
7.0.0-preview15 177 11/25/2025
7.0.0-preview14 175 11/25/2025
7.0.0-preview13 183 11/25/2025
7.0.0-preview12 181 11/25/2025
7.0.0-preview11 193 11/23/2025
7.0.0-preview10 189 11/23/2025
Loading failed