diff --git a/OurUmbraco.Site/Views/MacroPartials/Documenation/Breadcrumb.cshtml b/OurUmbraco.Site/Views/MacroPartials/Documenation/Breadcrumb.cshtml index 1d0000a0..e0f00fad 100644 --- a/OurUmbraco.Site/Views/MacroPartials/Documenation/Breadcrumb.cshtml +++ b/OurUmbraco.Site/Views/MacroPartials/Documenation/Breadcrumb.cshtml @@ -8,8 +8,12 @@ directoryName = directoryName.Substring(1); string[] strDirs = directoryName.Split('\\'); - - string linkToGithub = uDocumentation.Github.MarkdownFileLink(); + + var linkToGithub = string.Empty; + if (absolutePath.StartsWith("/project") == false) + { + linkToGithub = uDocumentation.Github.MarkdownFileLink(); + } }
- @if (linkToGithub != "") + @if (string.IsNullOrWhiteSpace(linkToGithub) == false) { Edit } diff --git a/OurUmbraco.Site/projects/umbraco-pro/contour/Documentation/readme.md b/OurUmbraco.Site/projects/umbraco-pro/contour/Documentation/readme.md index c40af4bf..705263be 100644 --- a/OurUmbraco.Site/projects/umbraco-pro/contour/Documentation/readme.md +++ b/OurUmbraco.Site/projects/umbraco-pro/contour/Documentation/readme.md @@ -1,13 +1,13 @@ # Contour Documentation # Documents how to work with [Umbraco Contour](http://umbraco.com/products/more-add-ons/contour.aspx) (HQ's official form builder) from both an editor and developer standpoint (these docs are **work in progress** so expect regular updates :) ) -##[Installation and upgrading](Documentation/Installation/index.md) +##[Installation and upgrading](Installation/index.md) Extending Umbraco with the Contour section and keeping it up to date -##[For editors](Documentation/Editor/index.md) +##[For editors](Editor/index.md) Documents how to interact with the interface and build forms in a couple of clicks. -##[For developers](Documentation/Developer/index.md) +##[For developers](Developer/index.md) Developer documents covers working with Umbraco Contour from a developer standpoint. It covers designing forms in visual studio, retrieving data from contour, either via XSLT, Razor or via the normal API, it shows how to extend the system by hooking into the provider model, and finally it describes the available events and workflows you can use to extend or integrate Contour.