diff --git a/src/Umbraco.Web.UI.Client/src/views/contentblueprints/intro.html b/src/Umbraco.Web.UI.Client/src/views/contentblueprints/intro.html new file mode 100644 index 0000000000..06d17350ff --- /dev/null +++ b/src/Umbraco.Web.UI.Client/src/views/contentblueprints/intro.html @@ -0,0 +1,32 @@ +
+ + + + + + + +
+ TODO: This is a non designed placeholder for beta release - please update me! + +

What are Content Templates?

+

Content Templates are pre-defined content that can be selected when creating a new Content node.

+

How do I create a Content Template?

+

Simply right-click a content node and select "Create Content Template" to create a new Content Template. Once given a name, editors can start + using the Content Template as a foundation for their new page.

+

How do I manage Content Templates

+

You can edit and delete Content Templates from the "Content Templates" tree in the Settings section. Just expand the Document Type which the + Content Template is based on and click it to edit or delete it.

+
+ +
+ +
+
+ + + diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml index 289260b2a6..150cb4c1bf 100644 --- a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml +++ b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml @@ -38,7 +38,7 @@ Sort Translate Update - Create blueprint + Create Content Template Content @@ -64,7 +64,7 @@ Allow access to change the sort order for nodes Allow access to translate a node Allow access to save a node - Allow access to create a content template + Allow access to create a Content Template Permission denied. @@ -210,12 +210,12 @@ Property %0% uses editor %1% which is not supported by Nested Content. Add another text box Remove this text box - Create a blueprint from %0% + Create a Content Template from %0% Blank - Select a blueprint - Blueprint created - Blueprint was created from %0% - Another Blueprint with the same name already exists. + Select a Content Template + Content Template created + A Content Template was created from %0% + Another Content Template with the same name already exists. Content root @@ -1530,7 +1530,7 @@ To manage your website, simply open the Umbraco back office and start adding con Content - Content Blueprints + Content Templates Media Cache Browser Recycle Bin diff --git a/src/Umbraco.Web/Trees/ContentBlueprintTreeController.cs b/src/Umbraco.Web/Trees/ContentBlueprintTreeController.cs index 8c9f40493e..43c7dcce4b 100644 --- a/src/Umbraco.Web/Trees/ContentBlueprintTreeController.cs +++ b/src/Umbraco.Web/Trees/ContentBlueprintTreeController.cs @@ -32,6 +32,16 @@ namespace Umbraco.Web.Trees [CoreTree] public class ContentBlueprintTreeController : TreeController { + + protected override TreeNode CreateRootNode(FormDataCollection queryStrings) + { + var root = base.CreateRootNode(queryStrings); + + //this will load in a custom UI instead of the dashboard for the root node + root.RoutePath = string.Format("{0}/{1}/{2}", Constants.Applications.Settings, Constants.Trees.ContentBlueprints, "intro"); + + return root; + } protected override TreeNodeCollection GetTreeNodes(string id, FormDataCollection queryStrings) { var nodes = new TreeNodeCollection();