cms-niceties/templates/Page.ss

34 lines
967 B
Scheme
Raw Normal View History

2021-06-19 21:30:03 +02:00
<!DOCTYPE html>
<html lang="$ContentLocale.ATT" dir="$i18nScriptDirection.ATT">
<%-- manifest="/cache.appcache" --%>
<head>
<% include MetaHead %>
</head>
2021-12-02 00:31:22 +01:00
<body class="is-online"<% with $SiteConfig %> data-default-lng="$Longitude" data-default-lat="$Latitude"<% end_with %>>
2023-10-31 01:15:43 +01:00
<div id="TopAnchor"></div>
2021-06-19 21:30:03 +02:00
<div class="wrapper">
<% include First %>
<div id="MetaLightboxApp"></div>
<header id="Header">
<% include Header %>
</header>
<div id="MainContent" class="page-content" data-ajax-region="LayoutAjax"<% if $isLegacy %> data-legacy="true"<% end_if %>>
<% if $isFormResponse || $isLegacy %>
2023-10-24 23:32:08 +02:00
<%-- Legacy code compatibility --%>
<% include MainContent Layout=$Layout %>
<% end_if %>
</div>
2021-06-19 21:30:03 +02:00
</div>
<footer id="Footer" class="site-footer footer">
<% include Footer %>
</footer>
<% include Last %>
</body>
</html>