mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
69 lines
2.3 KiB
Scheme
69 lines
2.3 KiB
Scheme
<!DOCTYPE html>
|
|
<html lang="$ContentLocale.ATT" dir="$i18nScriptDirection.ATT">
|
|
<%-- manifest="/cache.appcache" --%>
|
|
<head>
|
|
<% include MetaHead %>
|
|
</head>
|
|
|
|
<body oncontextmenu="return false;"<% with $SiteConfig %> data-default-lng="$Longitude" data-default-lat="$Latitude"<% end_with %>>
|
|
<% include First %>
|
|
|
|
<div class="wrapper">
|
|
<header id="Header">
|
|
<% include Header %>
|
|
</header>
|
|
|
|
<main id="MainContent" data-ajax-region="LayoutAjax">
|
|
<% if $ParentID %>
|
|
<div id="PageBreadcumbs">
|
|
$Breadcrumbs
|
|
</div>
|
|
<% else_if $ClassName != 'Site\Pages\HomePage' %>
|
|
<div id="PageBreadcumbs">
|
|
<nav class="breadcrumbs $DefaultContainer" aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item">
|
|
<a href="/">Home</a>
|
|
</li>
|
|
|
|
<li class="breadcrumb-item current active" aria-current="page">
|
|
<a href="$Link" class="breadcrumb-2">
|
|
$MenuTitle
|
|
</a>
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
</div>
|
|
<% end_if %>
|
|
|
|
<% if $SideBarView && $SideBarView.Widgets.Count %>
|
|
<div class="content-holder">
|
|
<div class="row">
|
|
<div class="col-md-9">
|
|
$Layout
|
|
</div>
|
|
<div class="col-md-3">
|
|
<div class="page-content-sidebar page-content jsSidebarUI">
|
|
<div class="jsSidebarUI__inner">
|
|
$SideBarView
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<% else %>
|
|
<div class="content-holder">
|
|
$Layout
|
|
</div>
|
|
<% end_if %>
|
|
</main>
|
|
</div>
|
|
|
|
<footer id="Footer" class="site-footer footer">
|
|
<% include Footer %>
|
|
</footer>
|
|
|
|
<% include Last %>
|
|
</body>
|
|
</html>
|