Blame view

sources/core/templates/layout.guest.php 2.24 KB
03e52840d   Kload   Init
1
  <!DOCTYPE html>
6d9380f96   Cédric Dupont   Update sources OC...
2
3
4
5
6
7
  <!--[if lt IE 7]><html class="ng-csp ie ie6 lte9 lte8 lte7" data-placeholder-focus="false"><![endif]-->
  <!--[if IE 7]><html class="ng-csp ie ie7 lte9 lte8 lte7" data-placeholder-focus="false"><![endif]-->
  <!--[if IE 8]><html class="ng-csp ie ie8 lte9 lte8" data-placeholder-focus="false"><![endif]-->
  <!--[if IE 9]><html class="ng-csp ie ie9 lte9" data-placeholder-focus="false"><![endif]-->
  <!--[if gt IE 9]><html class="ng-csp ie" data-placeholder-focus="false"><![endif]-->
  <!--[if !IE]><!--><html class="ng-csp" data-placeholder-focus="false"><!--<![endif]-->
03e52840d   Kload   Init
8

03e52840d   Kload   Init
9
10
  	<head data-requesttoken="<?php p($_['requesttoken']); ?>">
  		<title>
31b7f2792   Kload   Upgrade to ownclo...
11
  		<?php p($theme->getTitle()); ?>
03e52840d   Kload   Init
12
13
  		</title>
  		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
a293d369c   Kload   Update sources to...
14
  		<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
03e52840d   Kload   Init
15
16
17
18
19
20
21
22
23
  		<meta name="apple-itunes-app" content="app-id=543672169">
  		<link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" />
  		<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" />
  		<?php foreach($_['cssfiles'] as $cssfile): ?>
  			<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" type="text/css" media="screen" />
  		<?php endforeach; ?>
  		<?php foreach($_['jsfiles'] as $jsfile): ?>
  			<script type="text/javascript" src="<?php print_unescaped($jsfile); ?>"></script>
  		<?php endforeach; ?>
31b7f2792   Kload   Upgrade to ownclo...
24

03e52840d   Kload   Init
25
26
27
28
29
30
31
32
33
34
  		<?php foreach($_['headers'] as $header): ?>
  			<?php
  				print_unescaped('<'.$header['tag'].' ');
  				foreach($header['attributes'] as $name=>$value) {
  					print_unescaped("$name='$value' ");
  				};
  				print_unescaped('/>');
  			?>
  		<?php endforeach; ?>
  	</head>
6d9380f96   Cédric Dupont   Update sources OC...
35
  	<?php flush(); ?>
03e52840d   Kload   Init
36
  	<body id="body-login">
31b7f2792   Kload   Upgrade to ownclo...
37
  		<div class="wrapper"><!-- for sticky footer -->
6d9380f96   Cédric Dupont   Update sources OC...
38
39
40
41
42
  			<div class="v-align"><!-- vertically centred box -->
  				<header><div id="header">
  					<div class="logo svg"></div>
  					<div id="logo-claim" style="display:none;"><?php p($theme->getLogoClaim()); ?></div>
  				</div></header>
31b7f2792   Kload   Upgrade to ownclo...
43

6d9380f96   Cédric Dupont   Update sources OC...
44
  				<?php print_unescaped($_['content']); ?>
31b7f2792   Kload   Upgrade to ownclo...
45
  			<div class="push"></div><!-- for sticky footer -->
6d9380f96   Cédric Dupont   Update sources OC...
46
  			</div>
03e52840d   Kload   Init
47
  		</div>
31b7f2792   Kload   Upgrade to ownclo...
48

03e52840d   Kload   Init
49
50
  		<footer>
  			<p class="info">
31b7f2792   Kload   Upgrade to ownclo...
51
52
53
  				<?php print_unescaped($theme->getLongFooter()); ?>
  			</p>
  		</footer>
03e52840d   Kload   Init
54
55
  	</body>
  </html>