mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
117 lines
2.7 KiB
Plaintext
117 lines
2.7 KiB
Plaintext
@{
|
|
Style.Include("site.css");
|
|
|
|
// cool stuff goes up here
|
|
var homeUrl = Href("~/");
|
|
|
|
// Zone is an alias for Display
|
|
Func<dynamic, dynamic> Zone = x => Display(x);
|
|
|
|
if (Model.Sidebar != null) {
|
|
Model.Classes.Add("has-sidebar");
|
|
}
|
|
|
|
//Model.Attributes.Add("onclick", "javscript:alert('woot')");
|
|
|
|
Model.Id = "layout-wrapper";
|
|
var tag = Tag (Model, "div");
|
|
|
|
}
|
|
|
|
@* Add a wrapping div around everything *@
|
|
@tag.StartElement
|
|
|
|
@* needs to be the page title, not page (head) title... *@
|
|
@* Adds text and html to the header zone *@
|
|
|
|
@using(Capture(branding => WorkContext.Layout.Header.Add(branding) )) {
|
|
<h1 id="branding"><a href="@homeUrl">@WorkContext.CurrentSite.SiteName</a></h1>
|
|
}
|
|
|
|
<header id="layout-header">
|
|
@if(Model.Header != null) {
|
|
<div id="header">
|
|
@Zone(Model.Header)
|
|
</div>
|
|
}
|
|
</header>
|
|
|
|
|
|
@if(Model.Navigation != null) {
|
|
<div id="navigation" class="group">
|
|
@Zone(Model.Navigation)
|
|
</div>
|
|
}
|
|
|
|
|
|
<div id="layout-content" class="group">
|
|
@if(Model.Messages != null) {
|
|
<div id="messages">
|
|
@Zone(Model.Messages)
|
|
</div>
|
|
}
|
|
|
|
@* This code would inject text into the Featured zone.
|
|
@{WorkContext.Layout.Featured.Add("just some text in featured");}
|
|
*@
|
|
|
|
@{
|
|
WorkContext.Layout.Featured.Add(New.Featured(insertMessage:"This is a featured blog post."));
|
|
}
|
|
@if(Model.Featured != null) {
|
|
<div class="zone-featured group">
|
|
@Zone(Model.Featured)
|
|
</div>
|
|
}
|
|
|
|
@{
|
|
WorkContext.Layout.Recent.Add(New.Recent());
|
|
}
|
|
@if(Model.Featured != null) {
|
|
<div class="group">
|
|
@Zone(Model.Recent)
|
|
</div>
|
|
}
|
|
|
|
@{WorkContext.Layout.Sidebar1.Add("just some text in featured");}
|
|
@if(Model.Sidebar1 != null) {
|
|
<aside class="sidebar">
|
|
@Zone(Model.Sidebar1)
|
|
</aside>
|
|
}
|
|
|
|
@* the model content for the page is in the Content zone @ the default position (nothing, zero, zilch) *@
|
|
@if(Model.Content != null) {
|
|
<div id="content" class="group">
|
|
@Zone(Model.Content)
|
|
</div>
|
|
}
|
|
else {
|
|
<div id="content" class="group">
|
|
Let's take over the home page
|
|
</div>
|
|
}
|
|
|
|
@if(Model.Sidebar != null) {
|
|
<aside class="sidebar">
|
|
@Zone(Model.Sidebar)
|
|
</aside>
|
|
}
|
|
|
|
</div>
|
|
|
|
@{
|
|
WorkContext.Layout.Footer.Add(@Display.User());
|
|
}
|
|
@if(Model.Footer != null) {
|
|
<footer id="layout-footer" class="group">
|
|
@Zone(Model.Footer)
|
|
</footer>
|
|
}
|
|
else {
|
|
<footer id="layout-footer">
|
|
Powered by Orchard @Display.User()
|
|
</footer>
|
|
}
|
|
|
|
@tag.EndElement |