Rename Layout to Master
This commit is contained in:
@@ -1756,7 +1756,7 @@
|
||||
<Content Include="umbraco\lib\bootstrap-tabdrop\README.md" />
|
||||
<Content Include="Views\MacroPartials\Releases\ReleasesDropdown.cshtml" />
|
||||
<Content Include="Views\Partials\Community\TermsAndConditions.cshtml" />
|
||||
<Content Include="Views\Layout.cshtml" />
|
||||
<Content Include="Views\Master.cshtml" />
|
||||
<Content Include="Views\Community.cshtml" />
|
||||
<Content Include="Views\Forum.cshtml" />
|
||||
<None Include="Views\DocumentationSubpage.cshtml" />
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
|
||||
@Umbraco.RenderMacro("CommunityHome")
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
|
||||
<div id="contribute" class="subpage">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
<!-- FORUM OVERVIEW START -->
|
||||
<section class="forum-overview">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
<div class="has-sidebar">
|
||||
<div class="documentation">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
<div class="has-sidebar">
|
||||
<div class="documentation">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
@using ClientDependency.Core.Mvc
|
||||
@using OurUmbraco.Release
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
Html.RequiresCss("~/css/releases.css");
|
||||
var latestRelease = Download.GetCurrentReleaseFromFile();
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
|
||||
<!-- FORUM OVERVIEW START -->
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
<div class="page-content">
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
<section class="plain">
|
||||
<div>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
<div class="page-content">
|
||||
<div class="sidebar-area">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
|
||||
<div class="page-content">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
<div class="has-sidebar">
|
||||
<div class="page-content">
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@using OurUmbraco.Release
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
|
||||
var downloads = Model.Content.Children().Where(x => x.ContentType.Alias == "ReleaseDownload").ToArray();
|
||||
if (Request.Params["fromdownload"] != null)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@using OurUmbraco.Release
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
var allReleases = Release.GetAllReleaseFromFile();
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@using OurUmbraco.Release
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
if (Request.Url != null && (Request.Url.AbsolutePath.ToLowerInvariant() == "/roadmap/" || Request.Url.AbsolutePath.ToLowerInvariant() == "/roadmap"))
|
||||
{
|
||||
var newUrl = Request.Url.AbsoluteUri.Replace("/roadmap", "/contribute/roadmap");
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@using OurUmbraco.Our.Models
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
<div class="plain">
|
||||
<!-- search OVERVIEW START -->
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
@inherits UmbracoTemplatePage
|
||||
@{
|
||||
Layout = "~/Views/Layout.cshtml";
|
||||
Layout = "~/Views/Master.cshtml";
|
||||
}
|
||||
|
||||
<div id="body" class="page markdown-syntax">
|
||||
|
||||
Reference in New Issue
Block a user