1{* $Id$ *}<!DOCTYPE html>
2<html lang="{if !empty($pageLang)}{$pageLang}{else}{$prefs.language}{/if}"{if !empty($page_id)} id="page_{$page_id}"{/if}>
3	<head>
4		{include file='header.tpl'}
5		<meta name="viewport" content="width=device-width, initial-scale=1.0">
6	</head>
7	<body{html_body_attributes}>
8		{$cookie_consent_html}
9
10		{include file="layout_fullscreen_check.tpl"}
11
12		{if $prefs.feature_ajax eq 'y'}
13			{include file='tiki-ajax_header.tpl'}
14		{/if}
15
16		<div class="container{if $smarty.session.fullscreen eq 'y'}-fluid{/if} container-std middle" id="middle">
17{if !isset($smarty.session.fullscreen) || $smarty.session.fullscreen ne 'y'}
18			<div class="row">
19				<header class="page-header w-100" id="page-header">
20					{modulelist zone=top class='top_modules d-flex justify-content-between'}
21				</header>
22			</div>
23{/if}
24			<div class="row">
25				<div class="col-md-12">
26					{modulelist zone=topbar}
27				</div>
28			</div>
29
30			<div class="row">
31				<div class="col-md-12" id="col1">
32					{block name=title}{/block}
33					{block name=navigation}{/block}
34					{feedback}
35					{block name=content}{/block}
36				</div>
37			</div>
38
39			<div class="row">
40				<div class="col-md-12 well">
41					{modulelist zone=bottom}
42				</div>
43			</div>
44		</div>
45
46		{include file='footer.tpl'}
47	</body>
48</html>
49{if $prefs.feature_debug_console eq 'y' and not empty($smarty.request.show_smarty_debug)}
50	{debug}
51{/if}
52