mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Retiring ContentItemViewModel
...and all that entails - things like IZone and IZoneCollection are barely roughed in --HG-- branch : theming
This commit is contained in:
24
src/Orchard.Web/Modules/Orchard.Themes/Views/Document.cshtml
Normal file
24
src/Orchard.Web/Modules/Orchard.Themes/Views/Document.cshtml
Normal file
@@ -0,0 +1,24 @@
|
||||
@using Orchard.Mvc.Html
|
||||
<!DOCTYPE html>
|
||||
@//"en" needs to change to the current culture, btw
|
||||
@//all inline styles for tmp reference only
|
||||
<html lang="en" class="static" style="background:#000;color:#fff;padding:5px">
|
||||
<head>
|
||||
<title>Page Title@{/*View.Page.Title*/}</title>
|
||||
@//could be a resource - at least need to get at the right location and this is something
|
||||
<link rel="shortcut icon" type="image/x-icon" href="/modules/orchard.themes/Content/orchard.ico" />
|
||||
@{
|
||||
//todo: (heskew) have resource modules that can be leaned on (like a jQuery module that knows about various CDNs and jQuery's version and min naming schemes)
|
||||
//todo: (heskew) this is an interim solution to inlude jQuery in every page and still allow that to be overriden in some theme by it containing a headScripts partial
|
||||
}
|
||||
@//Model.Zones.AddRenderPartial("head:before", "HeadPreload", Model);
|
||||
@//Html.Zone("head", ":metas :styles :scripts"); %>
|
||||
<script type="text/javascript">document.documentElement.className="dyn";</script>
|
||||
</head>
|
||||
<body class="@Html.ClassForPage()">
|
||||
<section>
|
||||
<h1>document template</h1>
|
||||
@Html.RenderOrchardBody()
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user