diff --git a/src/Orchard.Web/Orchard.Web.csproj b/src/Orchard.Web/Orchard.Web.csproj index aa4e2bea7..3a0200970 100644 --- a/src/Orchard.Web/Orchard.Web.csproj +++ b/src/Orchard.Web/Orchard.Web.csproj @@ -195,6 +195,7 @@ + diff --git a/src/Orchard.Web/Themes/Green/Views/Layout.HomePage.ascx b/src/Orchard.Web/Themes/Green/Views/Layout.HomePage.ascx new file mode 100644 index 000000000..0a2d9daa2 --- /dev/null +++ b/src/Orchard.Web/Themes/Green/Views/Layout.HomePage.ascx @@ -0,0 +1,46 @@ +<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %> +<%@ Import Namespace="Orchard.Mvc.ViewModels"%> +<%@ Import Namespace="Orchard.Mvc.Html" %> + +<% + Html.RegisterStyle("yui.css"); + Html.RegisterStyle("site.css"); + Html.RegisterStyle("blog.css"); + %> + + + +<% Html.Zone("header"); Html.Zone("menu"); %> + + + + + AdventureWorks + + + + <%-- todo:(nheskew) this will need to all go in the header zone (user widget) --%> + <% Html.Include("User"); %> + + + + <%--Top Navigation--%> + <%-- todo:(nheskew) this will need to be a generated menu --%> + <% Html.Include("Menu"); %> + + +<%-- Begin Page Content --%> + + + + + <%--Main Content--%> + <%Html.ZoneBody("content");%> + + + + + <%-- End Content --%> + <%Html.Zone("footer");%> + <% Html.Include("Footer"); %> +