cyberstammtisch-silverstripe/themes/starter/templates/Layout/Page.ss
2021-10-20 13:45:30 +02:00

38 lines
1.2 KiB
Scheme

<div class="container">
<div class="row">
<section class="<% if $Children %>col-lg-12<% else %>col-lg-8 offset-lg-2<% end_if %>">
<header class="page-header">
$Breadcrumbs
<h1>$Title</h1>
</header>
</section>
</div>
<div class="row">
<section class="col-lg-8<% if not $Children %> offset-lg-2<% end_if %>">
<% if $ElementalAreaID %>
<%-- Support for content blocks, if enabled --%>
<% if $ElementalArea.RichLinks %>
$ElementalArea.RichLinks %>
<% else %>
$ElementalArea
<% end_if %>
<% else %>
<%-- CMS page content --%>
<% if $Content.RichLinks %>
$Content.RichLinks
<% else %>
$Content
<% end_if %>
<% end_if %>
$Form
<% include RelatedPages %>
$CommentsForm
</section>
<% if $Children %>
<aside class="col-lg-3 offset-lg-1">
<% include SidebarNav %>
</aside>
<% end_if %>
</div>
</div>
<% include PageUtilities %>