silverstripe-webpack/app/templates/Page.ss

30 lines
770 B
Scheme
Raw Normal View History

2018-02-05 12:11:01 +01:00
<!DOCTYPE html>
<html lang="$ContentLocale.ATT" dir="$i18nScriptDirection.ATT">
<%-- manifest="/cache.appcache" --%>
<head>
<% include MetaHead %>
2018-02-05 12:11:01 +01:00
</head>
2018-03-24 11:45:31 +01:00
2018-08-26 12:46:03 +02:00
<body oncontextmenu="return false;"<% with $SiteConfig %> data-default-lng="$Longitude" data-default-lat="$Latitude"<% end_with %>>
<div class="wrapper">
<% include First %>
<div id="MetaLightboxApp"></div>
2019-11-07 19:26:33 +01:00
<header id="Header">
<% include Header %>
</header>
2018-02-05 12:11:01 +01:00
<main id="MainContent" class="page-content" data-ajax-region="LayoutAjax">
2020-08-04 16:17:23 +02:00
<% include MainContent Layout=$Layout %>
</main>
</div>
2019-08-27 17:25:05 +02:00
<footer id="Footer" class="site-footer footer">
<% include Footer %>
2018-02-05 12:11:01 +01:00
</footer>
2019-12-17 21:43:28 +01:00
<% include Last %>
2018-02-05 12:11:01 +01:00
</body>
2018-06-23 12:27:06 +02:00
</html>