Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation on Templates and Named Sections #6853

Merged
merged 7 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions 14/umbraco-cms/.gitbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,4 @@ redirects:
fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/label-property-configuration: reference/umbraco-flavored-markdown.md
customizing/property-editors/build-a-block-editor: fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/README.md
tutorials/creating-and-distributing-a-package: extending/packages/creating-a-package.md
fundamentals/design/templates/named-sections: fundamentals/design/templates/README.md
1 change: 0 additions & 1 deletion 14/umbraco-cms/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@
* [Design](fundamentals/design/README.md)
* [Templates](fundamentals/design/templates/README.md)
* [Basic Razor Syntax](fundamentals/design/templates/basic-razor-syntax.md)
* [Named Sections](fundamentals/design/templates/named-sections.md)
* [Razor Cheatsheet](fundamentals/design/templates/razor-cheatsheet.md)
* [Rendering Content](fundamentals/design/rendering-content.md)
* [Rendering Media](fundamentals/design/rendering-media.md)
Expand Down
116 changes: 76 additions & 40 deletions 14/umbraco-cms/fundamentals/design/templates/README.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,46 @@
---
description: Templating in Umbraco including inheriting from master template
description: Templating in Umbraco builds on the concept of Razor Views from ASP.NET MVC.
---

# Templates

_Templating in Umbraco builds on the concept of Razor Views from ASP.NET MVC - if you already know this, then you are ready to create your first template - if not, this is a quick and handy guide._
Templates are the files that control the look and feel of the frontend of your Umbraco websites. Building on the concept of MVC Razor Views, template files enable you to structure your websites using HTML, CSS, and JavaScript. When tied to a Document Type, templates are used to render your Umbraco content on the frontend.

## Creating your first Template
You can manage and work with your templates directly from the Settings section in the Umbraco backoffice. Each Template can also be found as a `cshtml` file in the `Views` folder in your project directory.

By default, all document types should have a template attached - but in case you need an alternative template or a new one, you can create one:
## Creating Templates

When building an Umbraco website you can automatically generate Templates when you create a new Document Type. This will ensure the connection between the two and you can jump straight from defining the content to structuring it.

Choose the option called **[Document Type with Template](../../data/defining-content/README.md)** when you create a new Document Type to automatically create a Template as well.

In some cases, you might want to create independent Templates that don't have a direct connection to a Document Type. You can follow the steps below to create a new blank Template:

1. Go to the **Settings** section inside the Umbraco backoffice.
2. Click **...** next to the **Templates** folder.
3. Choose **Create**.
4. Enter a template name.
5. Click the **Save** button. You will now see the default template markup in the backoffice template editor.
5. Click the **Save** button.

You will now see the default template markup in the backoffice template editor.

![Created template](images/create-template.png)

## Allowing a Template on a Document Type

To use a template on a document, you must first allow it on the content's type. Open the Document Type you want to use the template, go to the Templates tab and select the template under the **Allowed Templates** section.
To use a Template on your content, you must first allow it on the content Document Type.

1. Open the Document Type you want to use the template.
2. Open the **Templates** Workspace View.
3. Select your Template under the **Allowed Templates** section.

![Allowing template](images/allow-template.png)

## Inheriting a Master Template
## Inheriting a Template

A Template can inherit content from a "Master Template". This is done by using the ASP.NET views Layout feature.

Check warning on line 41 in 14/umbraco-cms/fundamentals/design/templates/README.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [UmbracoDocs.Terms] We prefer 'primary' over 'Master.' Raw Output: {"message": "[UmbracoDocs.Terms] We prefer 'primary' over 'Master.'", "location": {"path": "14/umbraco-cms/fundamentals/design/templates/README.md", "range": {"start": {"line": 41, "column": 40}}}, "severity": "WARNING"}

A template can inherit content from a master template by using the ASP.NET views Layout feature. Let's say we have a template called **MasterView**, containing the following HTML:
Let's say you have a Template called **MainView**, containing the following HTML:

```csharp
@inherits Umbraco.Cms.Web.Common.Views.UmbracoViewPage
Expand All @@ -42,21 +56,34 @@
</html>
```

We then create a new template called **textpage** and in the template editor, click on the **Master Template** button and set its master template to the template called **MasterView**:
This file contains the structural HTML tags for your website.

By using the Template as the "Master Template" on your other Templates, you can ensure that they inherit the same structural HTML.

Check warning on line 61 in 14/umbraco-cms/fundamentals/design/templates/README.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [UmbracoDocs.Terms] We prefer 'primary' over 'Master.' Raw Output: {"message": "[UmbracoDocs.Terms] We prefer 'primary' over 'Master.'", "location": {"path": "14/umbraco-cms/fundamentals/design/templates/README.md", "range": {"start": {"line": 61, "column": 31}}}, "severity": "WARNING"}

Follow these steps to use a Template file as a Master Template:

Check warning on line 63 in 14/umbraco-cms/fundamentals/design/templates/README.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [UmbracoDocs.Terms] We prefer 'primary' over 'Master.' Raw Output: {"message": "[UmbracoDocs.Terms] We prefer 'primary' over 'Master.'", "location": {"path": "14/umbraco-cms/fundamentals/design/templates/README.md", "range": {"start": {"line": 63, "column": 48}}}, "severity": "WARNING"}

1. Open one of your Template files.
2. Select the **Master template: No master** button above the editor.

Check warning on line 66 in 14/umbraco-cms/fundamentals/design/templates/README.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [UmbracoDocs.Terms] We prefer 'primary' over 'Master.' Raw Output: {"message": "[UmbracoDocs.Terms] We prefer 'primary' over 'Master.'", "location": {"path": "14/umbraco-cms/fundamentals/design/templates/README.md", "range": {"start": {"line": 66, "column": 17}}}, "severity": "WARNING"}

Check warning on line 66 in 14/umbraco-cms/fundamentals/design/templates/README.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [UmbracoDocs.Terms] We prefer 'primary' over 'master.' Raw Output: {"message": "[UmbracoDocs.Terms] We prefer 'primary' over 'master.'", "location": {"path": "14/umbraco-cms/fundamentals/design/templates/README.md", "range": {"start": {"line": 66, "column": 37}}}, "severity": "WARNING"}
3. Select the Template that should be defined as the Master Template.

Check warning on line 67 in 14/umbraco-cms/fundamentals/design/templates/README.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [UmbracoDocs.Terms] We prefer 'primary' over 'Master.' Raw Output: {"message": "[UmbracoDocs.Terms] We prefer 'primary' over 'Master.'", "location": {"path": "14/umbraco-cms/fundamentals/design/templates/README.md", "range": {"start": {"line": 67, "column": 54}}}, "severity": "WARNING"}
4. Click **Choose**.

![Inherit template](images/inherit-template.png)

This changes the `Layout`value in the template markup, so **textpage** looks like this:
Alternatively, you can manually change the value of the `Layout` variable in the Template using the name of the Template file.

The updated markup will look something like the snippet below and the Template is now referred to as a *Child Template*:

```csharp
@inherits Umbraco.Web.Mvc.UmbracoViewPage
@{
Layout = "MasterView.cshtml";
Layout = "MainView.cshtml";
}
<p>My content</p>
```

When a page using the textpage template renders, the final HTML will be merged replacing the `@renderBody()` placeholder, and produce the following:
When a page that uses a Template with a Master Template defined is rendered, the HTML of the two templates is merged.

Check warning on line 84 in 14/umbraco-cms/fundamentals/design/templates/README.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [UmbracoDocs.Terms] We prefer 'primary' over 'Master.' Raw Output: {"message": "[UmbracoDocs.Terms] We prefer 'primary' over 'Master.'", "location": {"path": "14/umbraco-cms/fundamentals/design/templates/README.md", "range": {"start": {"line": 84, "column": 41}}}, "severity": "WARNING"}

The code from the Template replaces the `@RenderBody()` tag in the Master Template. Following the examples above, the final HTML will look like the code in the snippet below:

Check warning on line 86 in 14/umbraco-cms/fundamentals/design/templates/README.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [UmbracoDocs.Terms] We prefer 'primary' over 'Master.' Raw Output: {"message": "[UmbracoDocs.Terms] We prefer 'primary' over 'Master.'", "location": {"path": "14/umbraco-cms/fundamentals/design/templates/README.md", "range": {"start": {"line": 86, "column": 68}}}, "severity": "WARNING"}

```csharp
@inherits Umbraco.Web.Mvc.UmbracoViewPage
Expand All @@ -72,17 +99,39 @@
</html>
```

## Template Sections
## Named Sections

Template Sections give you added flexibility when building your templates. Use the Template Section together with a Master Template setup, to decide where sections of content are placed.

Check warning on line 104 in 14/umbraco-cms/fundamentals/design/templates/README.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [UmbracoDocs.Terms] We prefer 'primary' over 'Master.' Raw Output: {"message": "[UmbracoDocs.Terms] We prefer 'primary' over 'Master.'", "location": {"path": "14/umbraco-cms/fundamentals/design/templates/README.md", "range": {"start": {"line": 104, "column": 117}}}, "severity": "WARNING"}

What's good to know, is that you are not limited to a single section. Template sections allow child templates that inherit the master layout template to insert HTML code up into the main layout template. For example, a child template inserting code into the `<head>` tag of the master template.
If a Child Template needs to add code to the `<head>` tag a Section must be defined and then used in the Master Template. This is made possible by [Named Sections](https://www.youtube.com/watch?v=lrnJwglbGUA).

Check warning on line 106 in 14/umbraco-cms/fundamentals/design/templates/README.md

View workflow job for this annotation

GitHub Actions / runner / vale

[vale] reported by reviewdog 🐶 [UmbracoDocs.Terms] We prefer 'primary' over 'Master.' Raw Output: {"message": "[UmbracoDocs.Terms] We prefer 'primary' over 'Master.'", "location": {"path": "14/umbraco-cms/fundamentals/design/templates/README.md", "range": {"start": {"line": 106, "column": 106}}}, "severity": "WARNING"}

You can do this by using [named sections](https://www.youtube.com/watch?v=lrnJwglbGUA). Add named sections to your master template with the following code:
The following steps will guide you through defining and using a Named Section:

1. Open your Template.
2. Select the **Sections** option.
3. Choose **Define a named section**.
4. Give the section a name and click **Submit**.

![Define a named section by giving it a name](images/defined-named-section.png)

The following code will be added to your Template:

```csharp
@RenderSection("SectionName")
@section SectionName {

}
```

For instance, if you want to be able to add HTML to your `<head>` tags write:
5. Add your code between the curly brackets.
6. Save the changes.
7. Open the Master Template.
8. Choose a spot for the section and set the cursor there.
9. Select the **Sections** option.
10. Choose **Render a named section**.
11. Enter the name of the section you want to add.
12. Click **Submit**.

For instance, if you want to be able to add HTML to your `<head>` tags, you would add the tag there:

```csharp
@inherits Umbraco.Web.Mvc.UmbracoViewPage
Expand All @@ -93,39 +142,32 @@
<html>
<head>
<title>Title</title>
@RenderSection("Head")
@RenderSection("SectionName", false)
</head>

<body>
</body>
</html>
```

By default, when rendering a named section, the section is not mandatory. To make the section mandatory, add `true` or enable **Section is mandatory** field in the **Sections** option.
You can decide whether a section should be mandatory or not. Making a section mandatory means that any template using the Master Template is required to have the section defined.

```csharp
@RenderSection("Head", true)
```
{% hint style="info" %}
Keep in mind that whenever a mandatory named section is missing, it will result in errors on your website.
{% endhint %}

![Create partial](../../../../../10/umbraco-cms/fundamentals/design/templates/images/render-named-sections-v10.png)
To make the section mandatory, you have two options:

On your child page template call `@section Head {}` and then type your markup that will be pushed into the Master Template:
* Add `true` to the code tag: `@RenderSection("SectionName", true)`.
* Check the **Section is mandatory** field when using the **Sections** dialog in the backoffice.

```csharp
@section Head {
<style>
body {
background: #ff0000;
}
</style>
}
```
![Create partial](images/render-named-section-mandatory.png)

## Injecting Partial Views

Another way to reuse HTML is to use partial views - which are small reusable views that can be injected into another view.

Like templates, create a partial view, by clicking **...** next to the **Partial Views** folder and selecting **Create**. You can then either create an empty partial view or create a partial view from a snippet.
Like templates, you can create a partial view, by clicking **...** next to the **Partial Views** folder and selecting **Create**. You can then either create an empty partial view or a partial view from a snippet.

![Create partial](images/create-partial.png)

Expand All @@ -150,9 +192,3 @@
### Tutorials
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Named sections link above takes you to the GitHub page. Might be helpful to update the link.


* [Creating a basic website with Umbraco](../../../tutorials/creating-a-basic-website/)

### Umbraco Learning Base

{% embed url="https://www.youtube.com/playlist?ab_channel=UmbracoLearningBase&list=PLgX62vUaGZsFmzmm4iFKeL41CZ5YFw09z" %}
Playlist: Templates in Umbraco
{% endembed %}
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
60 changes: 0 additions & 60 deletions 14/umbraco-cms/fundamentals/design/templates/named-sections.md

This file was deleted.

1 change: 1 addition & 0 deletions 15/umbraco-cms/.gitbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,4 @@ redirects:
fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/label-property-configuration: reference/umbraco-flavored-markdown.md
customizing/property-editors/build-a-block-editor: fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/README.md
tutorials/creating-and-distributing-a-package: extending/packages/creating-a-package.md
fundamentals/design/templates/named-sections: fundamentals/design/templates/README.md
1 change: 0 additions & 1 deletion 15/umbraco-cms/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@
* [Design](fundamentals/design/README.md)
* [Templates](fundamentals/design/templates/README.md)
* [Basic Razor Syntax](fundamentals/design/templates/basic-razor-syntax.md)
* [Named Sections](fundamentals/design/templates/named-sections.md)
* [Razor Cheatsheet](fundamentals/design/templates/razor-cheatsheet.md)
* [Rendering Content](fundamentals/design/rendering-content.md)
* [Rendering Media](fundamentals/design/rendering-media.md)
Expand Down
Loading
Loading