OUR-243 Contour documentation gives page not found
#OUR-243 Fixed
This commit is contained in:
@@ -9,7 +9,11 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
<div class="utilities">
|
||||
<ul id="breadcrumb">
|
||||
@@ -31,7 +35,7 @@
|
||||
|
||||
</ul>
|
||||
<div class="utility-actions">
|
||||
@if (linkToGithub != "")
|
||||
@if (string.IsNullOrWhiteSpace(linkToGithub) == false)
|
||||
{
|
||||
<a href="@linkToGithub" id="github-link" class="button transparent tiny">Edit</a>
|
||||
}
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user