diff --git a/umbraco/presentation/umbraco/images/pinnedIcons/task_content.ico b/umbraco/presentation/umbraco/images/pinnedIcons/task_content.ico
new file mode 100644
index 0000000000..06aed6d45d
Binary files /dev/null and b/umbraco/presentation/umbraco/images/pinnedIcons/task_content.ico differ
diff --git a/umbraco/presentation/umbraco/images/pinnedIcons/task_default.ico b/umbraco/presentation/umbraco/images/pinnedIcons/task_default.ico
new file mode 100644
index 0000000000..8ccffe0794
Binary files /dev/null and b/umbraco/presentation/umbraco/images/pinnedIcons/task_default.ico differ
diff --git a/umbraco/presentation/umbraco/images/pinnedIcons/task_developer.ico b/umbraco/presentation/umbraco/images/pinnedIcons/task_developer.ico
new file mode 100644
index 0000000000..07bbf289e9
Binary files /dev/null and b/umbraco/presentation/umbraco/images/pinnedIcons/task_developer.ico differ
diff --git a/umbraco/presentation/umbraco/images/pinnedIcons/task_media.ico b/umbraco/presentation/umbraco/images/pinnedIcons/task_media.ico
new file mode 100644
index 0000000000..50e357ca8b
Binary files /dev/null and b/umbraco/presentation/umbraco/images/pinnedIcons/task_media.ico differ
diff --git a/umbraco/presentation/umbraco/images/pinnedIcons/task_member.ico b/umbraco/presentation/umbraco/images/pinnedIcons/task_member.ico
new file mode 100644
index 0000000000..7d68fa3c81
Binary files /dev/null and b/umbraco/presentation/umbraco/images/pinnedIcons/task_member.ico differ
diff --git a/umbraco/presentation/umbraco/images/pinnedIcons/task_settings.ico b/umbraco/presentation/umbraco/images/pinnedIcons/task_settings.ico
new file mode 100644
index 0000000000..619bdf265d
Binary files /dev/null and b/umbraco/presentation/umbraco/images/pinnedIcons/task_settings.ico differ
diff --git a/umbraco/presentation/umbraco/images/pinnedIcons/task_users.ico b/umbraco/presentation/umbraco/images/pinnedIcons/task_users.ico
new file mode 100644
index 0000000000..925f0f60d3
Binary files /dev/null and b/umbraco/presentation/umbraco/images/pinnedIcons/task_users.ico differ
diff --git a/umbraco/presentation/umbraco/images/pinnedIcons/umb.ico b/umbraco/presentation/umbraco/images/pinnedIcons/umb.ico
new file mode 100644
index 0000000000..b1baa5b622
Binary files /dev/null and b/umbraco/presentation/umbraco/images/pinnedIcons/umb.ico differ
diff --git a/umbraco/presentation/umbraco/scripting/templates/cshtml/UsingRelatedLinks.cshtml b/umbraco/presentation/umbraco/scripting/templates/cshtml/UsingRelatedLinks.cshtml
new file mode 100644
index 0000000000..628dcfb51b
--- /dev/null
+++ b/umbraco/presentation/umbraco/scripting/templates/cshtml/UsingRelatedLinks.cshtml
@@ -0,0 +1,37 @@
+@*
+USING RELATED LINKS (AND OTHER XML BASED TYPES
+==============================================
+This snippet shows how to work with properties that stores multiple values in XML such as the "Related Links" data type.
+When the Razor (or in fact the 'DynamicNode') detected XML, it automatically makes it possible to navigate the xml by
+using the name of the XML elements as properties. Be aware that the first xml element (the container) is always skipped
+and that the properties are case sensitive!
+
+How it works:
+- First we check if there's a property on the current page (Model) named 'relatedLinks'
+- Then we loop through the XML elements of the property 'RelatedLinks' (ie. all the links)
+- For each link we check if it should be opened in a new window (stored in an XML attribute called 'newwindow' which is
+ automatically translated into a property '.newwindow' by DynamicNode
+- Then we test if the link type is a internal or external link, and if it's an internal link we use the NiceUrl helper
+ method to convert the id of the page to a SEO friendly url
+
+NOTE: It is safe to remove this comment (anything between @ * * @), the code that generates the list is only the below!
+*@
+
+@inherits umbraco.MacroEngines.DynamicNodeContext
+
+@{
+ if (Model.HasProperty("relatedLinks")) {
+
+ @foreach (var link in @Model.RelatedLinks) {
+ string target = link.newwindow == "1" ? " target=\"_blank\"" : "";
+