-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmaintenance.tpl
58 lines (49 loc) · 2.4 KB
/
maintenance.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{*
* =|= Maintenance ==============================================
*
* Message shown to visitors when shop has been disabled for
* maintenance.
* ==============================================================
*}
<!DOCTYPE html>
<!--[if IE]><![endif]-->
<html lang="{$meta_language}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
{* Title set in Back Office > SEO & Titles. *}
<title>{$meta_title|escape:'htmlall':'UTF-8'}</title>
{* Meta description for SERPs. *}
{if isset($meta_description) AND $meta_description}
<meta name="description" content="{$meta_description|escape:html:'UTF-8'}" />
{/if}
{* Keywords are nearly useless these days, but PrestaShop has the functionality and some clients may require them (Ref: http://bit.ly/P4FuYL). *}
{if isset($meta_keywords) AND $meta_keywords}
<meta name="keywords" content="{$meta_keywords|escape:html:'UTF-8'}" />
{/if}
{* Set robots based upon Back Office config. Don't forget to generate a robots.txt too. *}
<meta name="robots" content="{if isset($nobots)}no{/if}index,{if isset($nofollow) && $nofollow}no{/if}follow" />
{* Favicon is displayed in address bar and bookmark bars in visitor's browser (Ref: http://bit.ly/P4F7xg). *}
<link rel="icon" href="{$favicon_url}?{$img_update_time}">
{* Include all CSS files from page controller's SetMedia() *}
{if isset($css_files)}
{foreach from=$css_files key=css_uri item=media}
<link href="{$css_uri}" rel="stylesheet" type="text/css" media="{$media}" />
{/foreach}
{/if}
{* IE9.js makes older versions of Internet Explorer behave like a standards-compliant browser. (Ref: http://bit.ly/LX9ox0) *}
<!--[if lt IE 9]><script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script><![endif]-->
{* HTML5Shiv enables HTML5 elements in older versions of Internet Explorer (Ref: http://bit.ly/LX9S6f) *}
<!--[if lt IE 9]><script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
<body>
<div id="maintenance">
<p><img src="{$content_dir}img/logo.jpg" alt="logo" /><br /><br /></p>
<p id="message">
{l s='In order to perform site maintenance, our online shop has shut down temporarily.'}<br /><br />
{l s='We apologize for the inconvenience and ask that you please try again later.'}
</p>
<span style="clear:both;"> </span>
</div>
</body>
</html>