Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Umbraco creates a corresponding template when you select the Document Type with Template option when creating a Document Type.
To edit the template:
Go to Settings.
Expand the Templates folder in the Templating section of the tree. You should see a template titled HomePage.
Open the template. It will contain a little bit of Razor code.
Leaving the code that's there (if you don't understand it, don't worry!) let's copy our template code in.
We are using files from the Custom Umbraco Template.
Open the Custom Umbraco Template folder and copy the contents of index.html.
Paste the content into the HomePage template below the closing curly brace "}".
Umbraco Templates uses Razor that allows you to add code in your Template files. Razor reacts to @
signs.
Click Save.
We now have a Template. That's two out of the three stages complete for our first page.
Our third and final stage to creating our first page in Umbraco, is to create a content node. The content node uses our Document Type and Template, to serve up an HTML page to web visitors.
To add a content node:
Go to Content.
Select ... next to the Content headline in the tree. Select HomePage.
If you cannot see the content node, check that [Settings] > [Document Types] > [HomePage] > [Permissions tab] > [Allow at root] is checked. The Home Page opens in the content editor.
Enter the name for the content node. We are going to call this Homepage.
The name will show up in the node list and will be used to create a URL for the page. Try to keep it short but descriptive.
Enter the following details:
Click Save and Publish. The content tree will reload with the homepage node.
Refresh your webpage in your browser http://localhost:xxxx. To access your webpage:
Select Info in the Homepage content node.
Click on the window pop-up symbol under the Links section.
The default Umbraco page will now be gone and we'll now see a bare, unstyled page. We are getting there.
If you see a blank page, check if the template is entered and remember to save it.
Name | Description |
---|---|
Page Title
Welcome to Widgets Ltd
Body Text
Lorem ipsum
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam et aliquet ante, ut eleifend libero.
Proin eleifend consequat nunc id vulputate.
Ut eget lobortis metus, non congue lorem.
Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
Maecenas tempus non lectus rhoncus efficitur.
Sed est ligula, maximus in dolor sed, lacinia egestas ligula. Donec eu nisi lectus.
Morbi pharetra pulvinar arcu non gravida.
Footer Text
Copyright Widgets Ltd 2019
A guide to creating a Basic Website using Umbraco
This tutorial was last tested on the latest version of Umbraco 11.
This tutorial will take you step-by-step through an Umbraco website build. It will allow you to take any website "template" (for example, flat HTML, CSS, and JavaScript) and install it into a fresh Umbraco site. You can then wire up the sections that need content managing by Umbraco.
We will avoid using any starter kits in this tutorial. Although these are useful, they won’t provide you with an understanding of the basics of Umbraco. We'll look at how to create Document Types and Templates and how these work together to build pages.
It is recommended that you work through the subsections in the following order.
To follow this tutorial please work through this section first.
How to create Document Types and what they do.
How to create your first template and create a content node.
Adding the CSS and JavaScript for your site into Umbraco.
How to wire the Document Type Properties (Umbraco Data Fields) into the templates to output the editor's data in the right place.
How to create a Master Template and use this to create more pages whilst minimizing duplicate HTML code from your flat source files.
using the Master template to create new page types.
A solution for the template in the menu.
How to have a parent page that lists and links to child nodes automatically. For example, an article list page containing a flexible/infinite number of articles - useful for Blogs or News pages.
At this point we have a basic site, but wouldn't it be cool if we could make the same site in another language? Read on to see how to get started with Language Variants!
By this point you'll have a basic working site - but where to next? You've barely scratched the surface of the power of Umbraco - a few links to send you on your way!
You might have noticed that the content we've added to the homepage is not being displayed. We need to wire up the Data Type properties to the template.
Let’s look at our template and identify where the content should be displayed.
The top arrow in this image is the Page Title and the bottom arrow is the Body Text. The Footer is all the way at the bottom of the page.
To set the Document Type properties:
Go to Settings.
Select Templates in the Templating section, and open the Homepage template.
Scroll down to the <!-- Jumbotron, w title -->
section (around line 46) and highlight the text “Welcome - UmbracoTV”
(around line 49).
Click Insert and select Value.
Select pageTitle field from the drop-down list.
Click Submit.
Repeat the same process for the content between the <div class="container">
tags (around line 61 to 78):
Highlight the content as shown in the figure.
Click Insert and select Value.
Select bodyText field from the drop-down list.
Click Submit.
Repeat the same process for the content in the <div class="container-fluid footer">
tag (around line 149 to 182):
Highlight the content between the <div class="container">
tags.
Click Insert and select Value.
Select footerText field from the drop-down list.
Click Submit.
Click Save.
Reload your homepage to view the content. You should see something similar like the image below:
Now, you can go back and add additional fields or update existing fields in the Document Type. Fill them out in the content node and then add them in the template to display the data in the website.
The first step in any Umbraco site is to create a Document Type. A Document Type is a data container in Umbraco where you can add Properties (data fields/attributes) to input data. Each Property has a Data Type like text string, number, or rich text body. Umbraco outputs the input data using Templates.
These are some of the most common properties you would add to a Document Type:
Page title
Sub Heading
Body Text
Meta Title
Meta Description
To create a Document Type:
Go to Settings.
Select ... next to the Document Types in the Settings tree.
Select Document Type with Template.
Using folders can help you organise your Document Types.
Enter a Name for the Document Type. Let's call it HomePage. You'll notice that an Alias is automatically created.
The alias of the Document Type is automatically generated based on the property name. If you want to change the auto-generated alias, click the "lock" icon. The alias must be in camel case. For example: homePage.
Enter the Description. For example: This is our homepage template. The description helps to identify the correct Document Type when creating new Content Nodes in the Content Section.
Click Save. Our new Document Type is now visible as a new item under Document Types.
With the help of icons, you can identify different Document Types in the Content Tree. To add an icon:
Select the icon placeholder next to the document name. The Select Icon dialog appears on the right-side of the website.
Browse through the icon list and select the icon of your choice.
Click Submit.
To create a Document Type at the root of the Content Tree:
Go to the Permissions tab.
Toggle the Allow as root button.
If your Document Types do not have the Allow as root checked, you will not be able to create any content on your site.
Click Save.
To add properties to your Document Type, follow these steps:
Go to the Design tab.
Select Add Group and enter a name for the group. For this tutorial, we will call it Content.
Select Add property. The Property Settings dialog opens.
Enter a Name. For example: Page Title.
Enter a Description. For example: The main title of the page (Welcome to Widgets Ltd.).
Select Select Editor and select the Data Type of your choice. We'll add text in the search box and select the Textstring Data Type.
Click Submit.
Remember to come back and explore the list of Data Types later.
Repeat Steps 3 to 7 using the specification below:
Select Add Group to create a new group called Footer. Repeat Steps 3 to 7 using the specification below:
Your Document Type should now look like this:
Click Save.
We’ve now created our first Document Type. Umbraco takes the data from an instance of the Document Type (also called as Content Node). This data is then merged with a Template – let's create our template next.
Having an Articles Parent page, and a number of associated child articles, provides a good example of Umbraco's features. We'll assume our fictional company, Widgets Ltd, writes about ten articles a month and want the articles page to act like a blog. You could use this functionality for news, event pages, or any other collection of Document Types.
Create two new Document Types with template: Articles Main and Articles Item.
To create Articles Main Document Type, follow these steps:
Go to Settings.
Select ... next to the Document Types in the Settings tree.
Click Document Type with Template.
Enter a Name for the Document Type. Let's call it Articles Main.
Let's add two fields with the following specifications:
Group | Field Name | Alias | Data Type |
---|
Click Save
To create Articles Item Document Type, follow these steps:
Go to Settings.
Select ... next to the Document Types in the Settings tree.
Click Document Type with Template.
Enter a Name for the Document Type. Let's call it Articles Item.
Let's add two fields with the following specifications:
Click Save
To update Articles Main Document Type permissions:
Navigate to the Home Page Document Type and go to the Permissions tab.
Select Add child in the Allowed child node types. The Choose child node window opens.
Select Articles Main and click Save.
Navigate to the Articles Main Document Type and go to the List View tab.
Toggle Enable List view and click Save.
To update Articles Item Document Type permissions:
Navigate to the Articles Main Document Type and go to the Permissions tab.
Select Add child in the Allowed child node types. The Choose child node window opens.
Select Articles Item and click Save.
To add a content node:
Go to Content.
Select ... next to the HomePage and select Articles Main.
Enter the name for the article. We are going to call it Articles.
Enter the Article Title, Article Content, and click Save and Publish. When you click on Save and Publish, you will notice an empty list view is created.
We still need to add the child nodes which will be displayed in the list view making it easier to view them. You can create new nodes from this section.
If you do not see the list view, try refreshing the page.
5. Click **Create Articles Item** to add two child nodes called **Article 1**, **Article 2**, and click **Save and Publish**.
To update the Articles Item template, follow these steps:
Go to Settings.
Expand the Templates folder in the Templating section. You should see a template titled Articles Main.
Select Master in the Master template and click Save.
Open the Custom Umbraco Template folder.
Copy the contents of Blog.html and paste the content into Articles Main below the closing curly brace "}".
Take care when pasting the template not to overwrite the first line @inherits Umbraco.Cms.Web.Common.Views.UmbracoViewPage<ContentModels.ArticlesMain>
. If you get an error when loading the page ensure the last part in <> brackets matches your Document Type alias.
Remove everything from the <html>
(around line 9) to the end of the </div>
tag (around line 44) which is the header
and navigation
of the site since it is already mentioned in the master template.
Remove everything from the <!-- Footer -->
tag (around line 84) to the end of the </html>
tag (around line 131)
Replace the static text within the <h1>
tags (around line 13) with the Model.Value reference to articlesTitle.
Replace the static text within the <div>
tags (from line 24 to 30) with the Model.Value reference to articlesBodyText.
Define a query for all articles below the <h3>
tag (around line 32) of the <!-- Latest blog posts -->
section.
You can set conditions to get specific articles or decide the order of the articles. For the purpose of this guide, we'll use the following parameters:
If you've set the correct parameters, you will get a preview of the items being selected with the query. Click Submit, and you will see a code snippet has been added to your template. It will look similar to this:
The above code will output a list of all the Article Items as links using the name. We will modify the template a little, to add more information about the articles. Replace the HTML
in the foreach loop with this snippet:
Click Save.
To update the Articles Item template, follow these steps:
Go to Settings.
Expand the Templates folder in the Templating section. You should see a template titled Articles Item.
Select Master in the Master template and click Save.
Open the Custom Umbraco Template folder.
Copy the contents of Blogpost.html and paste the content into Articles Item below the closing curly brace "}".
Take care when pasting the template not to overwrite the first line @inherits Umbraco.Cms.Web.Common.Views.UmbracoViewPage<ContentModels.ArticlesItem>
. If you get an error when loading the page ensure the last part in <> brackets matches your Document Type alias.
Remove everything from the <html>
(around line 9) to the end of the </div>
tag (around line 44) which is the header
and navigation
of the site since it is already mentioned in the master template.
Remove everything from the <!-- Footer -->
tag (around line 114) to the end of the </html>
tag (around line 161)
Replace the static text within the <h1>
tags (around line 14) with the Model.Value reference to articleTitle.
Replace the static text within the <div>
tags (from line 26 to 41) with the Model.Value reference to articleContent.
Click Save.
Check your browser, you should now see something similar to the screen below.
You can fix the navigation menu in two ways:
- Umbraco creates a navigation menu from the pages in the Content Tree, so when you create a page it automatically appears in the navigation menu. Using dynamic navigation, you do not need to manually add or change your menu items if the page changes.
it - You can hardcode the navigation menu but they would require more upkeep in the future if you want to remove a page or change its name.
To create dynamic navigation links from published content nodes, follow these steps:
Go to Settings.
Select Templates from the Templating section, and open the Master template.
Locate the <!-- Navigation -->
tag (around line 22).
Right below it, place the cursor on an empty line.
Select Query builder... in the top-right side of the editor.
Make sure it is set to say "I want all content from my website".
Click Submit.
You now have the following snippet in your Master Template:
This snippet will now need to be merged with the navigation above it.
The <ul>
tag needs to be wrapped inside the <div class="container">
and <nav>
tags, and the classes need to be added to the correct tags as well.
The final result will look like this:
The final step is to Save the Master template.
To add a basic hardcoded navigation, follow these steps:
Go to Settings.
Select Templates from the Templating section, and open the Master template.
Go to the <!-- Navigation -->
tag (around line 22), copy the content within the
tags (around line 23 to 45) and replace it with the following code:
Click Save.
The IsVisible() helper method
If you add a checkbox property to a Document Type with an alias of umbracoNaviHide, the IsVisible() helper method can be used to exclude these from being shown in any collection.
Let's test the menu. You'll find that clicking on the Articles link throws an Umbraco error as we've not created this page yet. We'll create the Articles page in the next chapter.
The Creating a Basic Site tutorial provides step-by-step instructions to build an Umbraco website using a set of HTML, CSS, and JavaScript files. The tutorial allows you to use a website template, customize it, and wire up the sections that need content managing in the Umbraco CMS.
To install a basic website in the Umbraco CMS, you need the following:
.
. Download the or, if you prefer, you can use your own flat HTML files.
To download the latest version of Umbraco, refer to the . On the installation wizard, follow the steps:
Enter your Name, Email, and Password.
Click on Change Database if you wish to configure another database for your Umbraco installation.
Choose the level of Consent for telemetry data of your Umbraco installation.
Click Install.
The installation will take a couple of minutes to complete. Once the installation is complete, you will see the Umbraco Backoffice screen.
Open the index.html from the folder in your preferred browser to see the template.
The template contains some text with dummy links. We’re going to turn this into a fully-fledged, Umbraco-powered site!
You can log in to Umbraco in two ways:
Once the installation is complete, you will see the Login screen. You can enter the Name and Password used during the installation process.
Run localhost in your browser to see the Login screen.
Enter the Name and Password used during the installation process. You should see a similar Umbraco Backoffice as the image below:
Our homepage is currently missing the CSS and image files. To include these files:
Navigate to the MyCustomUmbracoProject folder and the Custom Umbraco Template folder in File Explorer.
Copy the css and images folders from the Custom Umbraco template folder and place it in the wwwroot folder inside the MyCustomUmbracoProject folder.
Navigate to the HomePage template in the Settings section and ensure the stylesheet reference link is /css/main.css
.
Using Chrome/Firefox/Edge Developer Tools, start or refresh your http://localhost:xxxx.
The network tab should not report any missing CSS or images files. If the network tab reports any error, check for typos and if the folders are in the right places.
Now that we have a basic site set up, let's make the site multilingual by making variations of our content in one more language. For this tutorial, we will make a Danish version of the HomePage
page.
To add a new language, follow these steps:
Go to the Settings tab.
Go to Languages in the Settings tree. The Languages window opens in the editor.
Click Add Language. The Add Language window opens in the editor.
Select a Language from the dropdown list. In this tutorial, we will pick Danish.
In Settings, to set the new language as the:
Default language for your site, toggle Default Language.
Mandatory language for your site, toggle Mandatory Language.
Select a Fallback Language from the drop-down list.
Click Save.
To enable language variants on Document Types, follow these steps:
Go to the Settings tab.
Select HomePage from the Document Types folder.
Go to the Permissions tab and toggle Allow vary by culture
Click Save.
Go to the Design tab.
Click on the gear icon ⚙ of the Page Title and toggle Allow vary by culture.
Click Submit.
For this tutorial, we will not make any changes to the Body Text. Click Save.
To add culture and hostnames, follow these steps:
Go to the Content tab.
Right-click on the ... dots next to the Home Page content node and select Culture and Hostnames.
Add a domain for each hostname, like it's done here:
Click Save.
You will find a language dropdown above your content tree. If it's not there, you might need to refresh the page:
In the language dropdown, you will find all the languages that you have installed for your site. You can switch between them to update the content variations for each language.
To add language variants to the content, follow these steps:
Go to the Home Page node. You will find a language dropdown next to the title at the top:
Click the dropdown and hover over the new language. You will see an Open in Splitview option will appear.
Click Open in Splitview. In this splitview, we can see the content node with each language side by side.
You may notice that the bodytext is greyed out - this is because we haven't checked the Allow vary by culture checkbox.
Enter the Name for your content node and the Page Title in the new language.
Click Save and Publish. The Ready to Publish window opens providing the option to publish in one or more languages.
You can select either one or multiple languages and click Publish.
To view the language variant on the browser, follow these steps:
Go to the Content tab.
Select your new language from the language dropdown above your content tree.
Select the Home Page node and go to the Info tab.
You will notice the links with the new language domain added to it. If it's not there, you might need to refresh the page.
Click on the link to view the new language varied node in the browser.
We've seen how to create a Document Type and its corresponding Template. If you want to create a three-page site containing; Home, News and Contact Us pages, you would create a Document Type with a corresponding Template and copy the same HTML code into each template.
If you see yourself repeating the same HTML multiple times in your templates, you might want to consider creating a new master template.
To create a new master template:
Go to Settings.
Select Templates from the Templating section.
Select the ... next to the Templates folder and click Create.
A template opens up in the content editor. Enter a Name for the master template. Let's call it Master.
Click Save.
To use the master template:
Go to Settings.
Select Templates from the Templating section and open the Homepage template.
Select Master Template: No Master
. The Master template dialog opens on the right-side of the browser.
Select the template called Master. This will update the Razor code section from Layout = null;
to Layout = "Master.cshtml";
Click Save.
We now need to move the parts of our HTML template that are common across all templates into the Master. It might be slightly different for different websites and you'll need to consider if all pages contain a <div id="main">
section so that you can update it in the master.
To update templates with the new master template, follow these steps:
Go to Settings.
Select Templates from the Templating section.
Go to Master and open the Homepage template.
For this tutorial, we will cut everything from the <html>
(around line 9) to the end of the </div>
tag (around line 44) which is the header
and navigation
of the site to the master template.
Click Save.
Go to the Master template and paste this HTML markup after the closing curly brace (around line 9).
At the end of this markup, we need to tell Umbraco to insert the child template's content. To do so, add the code @RenderBody() at the end.
Click Save.
Repeat the same process for the footer content:
Go to Settings > Templates > Master > Homepage template and cut everything from the <!-- Footer -->
tag (around line 110) to the end of the </html>
tag (around line 124) and click Save.
Go to the Master template and paste this HTML markup after the @RenderBody field we've added.
Click Save.
Now we've done a lot of work. When we refresh our localhost page, nothing has changed. If you have a compilation error you have perhaps mistyped @RenderBody().
If you are missing any content (header or footer), check that the templates matches the following:
We are now going to create a page where we put our contact details. For added functionality, you might want to look at replacing this with a fully fledged contact us form.
Some potential solutions:
If you're not a programmer you can use the Umbraco built-in package - Umbraco Forms. Umbraco Forms has the added benefit that editors can also create their own forms. Find more information and purchase the product on .
Build your own contact form using .
Let's create a content-only contact page where we can provide a title and some rich text.
Go to Settings.
Select the ... next to the Document Types in the Settings tree.
Select Document Type with Template. The Document Type opens in the content editor.
Select an Icon from the list of icons.
Enter a Name. Let's call it Simple Content Page.
Enter a Description.
Let's add two fields with the following specifications:
Group | Field Name | Alias | Data Type |
---|
Click Save.
Go to Templates to view your Simple Content Page template that was created automatically with the Document Type.
Select the Simple Content Page template and then select Master as the Master template.
Add the following HTML to the Simple Content Page template and click Save.
Click Save.
We now need to update the Document Type permissions to specifically add child nodes under the root content node.
To update the Document Type permissions:
Go to Settings.
Open the Homepage Document Type and go to the Permissions tab.
Select Add child in the Allowed child node types. The Choose child node dialog opens.
Select Simple Content Page and click Save.
To create a content node:
Go to Content.
Select ... next to the Homepage and select Simple Content Page.
Enter a name for the Document Type. Let's call it Contact Us.
Fill in details for the Page Title and Body Text.
Click Save and Publish.
To add the Document Type properties:
Go to Settings.
Select Templates from the Templating section.
Go to Master and open the Simple Content Page template.
Scroll to the <!-- Jumbotron, w title -->
(around line 8) section and highlight the text “Umbraco Support”
(around line 11).
Click Insert and select Value.
Select the pageTitle field from the drop-down list and click Submit.
Repeat the same process for the <div class="container">
tag:
Highlight the content from the <p>
tag (around line 19) to the end of the </p>
tag (around line 22).
Click Insert and select Value.
Select bodyText field from the drop-down list.
Click Submit.
Click Save.
To view the Contact Us Page:
Go to Content.
Select the Contact Us page.
Go to the Info tab.
Click the link to view the page.
You may notice that the footer is now empty - we don't have the content from our Homepage node.
To use the Document Type properties from the homepage, do the following:
Go to Settings.
Select Templates from the Templating section, and open the Master template.
Highlight @Model.Value("footerText")
in the footer (around line 52) and click Insert.
Select Value and choose the footerText again from the Choose field dropdown.
Select Yes, make it recursive checkbox. This notifies Umbraco to look up the content tree if the field doesn't exist at the node level for the page we're requesting.
Click Submit.
Click Save.
Reload the Contact Us page to view the content with the footer.
Name | Body Text |
---|---|
Name | Footer Text |
---|---|
Group | Field Name | Alias | Data Type |
---|
Unzip the to a folder on your system.
Alternatively, you can add the domain name to your localhost in the browser. For example:
Group
Content
Alias
bodyText
Description
The main content of the page.
Data Type
Richtext Editor
Group
Footer
Alias
footerText
Description
Copyright notice for the footer.
Data Type
Textstring
Content | Article Title | articleTitle | Textstring |
Content | Article Content | articleContent | Rich Text Editor |
We now have a fully fledged working site! Hopefully, this guide has given you all the basics required to create your own site in Umbraco.
This is not the limit of Umbraco - you've barely scratched the surface in this guide.
For Video Tutorials, see the Umbraco Learning Base Youtube channel.
For hands-on Training and Developer Certification, attend an official Umbraco Master Class course in a city near you. Book your Online Course now.
For Online Documentation, see Our Umbraco Documentation website.
For Help and Guidance on anything this guide doesn't cover, reach out to us at Umbraco Forum.
Intro | Articles Title | articlesTitle | Textstring |
Intro | Articles Body Text | articlesBodyText | Rich Text Editor |
Content | Page Title | pageTitle | Textstring |
Content | Body Text | bodyText | Rich Text Editor |