FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Battle scarred developer's guide to Umbraco v17 - Sections
How-ToMachine Learning

Battle scarred developer's guide to Umbraco v17 - Sections

via Dev.toKevin Jump1mo ago

So now, we are getting into the code! as with all the bits in this series all the code is available on the DoStuffWithUmbraco repo . 1. Sections (see DoStuffWithUmbracoRepo : Sections ) A section in umbraco is something accessed from the top bar navigation menu. Its quite simple to add a new section - all you need is the manifest. const sectionManifest : UmbExtensionManifest = { type : " section " , alias : DOSTUFF_SECTION_ALIAS , name : " DoStuff Section " , weight : 10 , meta : { label : " #doStuff_sectionName " , pathname : " do-stuff " , }, }; Constants Here we have used a constant for the alias, because its often true you will need to reference the section alias in other places on your site. The alias is defined in another file. export const DOSTUFF_SECTION_ALIAS = " DoStuff.Section " ; and this replaces the string value in the manifest. Localization You might also notice that the label value starts with a '#', this tells umbraco that we want to use a localize value for the label.

Continue reading on Dev.to

Opens in a new tab

Read Full Article
14 views

Related Articles

The Boring Skills That Make Developers Unstoppable in 2026
How-To

The Boring Skills That Make Developers Unstoppable in 2026

Medium Programming • 8h ago

I Installed This VS Code Extension… and My Code Got Instantly Better
How-To

I Installed This VS Code Extension… and My Code Got Instantly Better

Medium Programming • 9h ago

The Age of Personalized Software
How-To

The Age of Personalized Software

Medium Programming • 11h ago

Automating Checkout Add-On Recommendations in WordPress for WooCommerce
How-To

Automating Checkout Add-On Recommendations in WordPress for WooCommerce

Dev.to • 11h ago

How-To

Start Here: Learning to develop your own way with SCSIC

Medium Programming • 15h ago

Discover More Articles