-
Notifications
You must be signed in to change notification settings - Fork 27
/
maintenance.tpl
34 lines (33 loc) · 1.17 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
<!DOCTYPE html>
<html lang="{$language_code|escape:'html':'UTF-8'}">
<head>
<meta charset="utf-8">
<title>{$meta_title|escape:'html':'UTF-8'}</title>
{if isset($meta_description)}
<meta name="description" content="{$meta_description|escape:'html':'UTF-8'}">
{/if}
{if isset($meta_keywords)}
<meta name="keywords" content="{$meta_keywords|escape:'html':'UTF-8'}">
{/if}
<meta name="robots" content="{if isset($nobots)}no{/if}index,follow">
<link rel="shortcut icon" href="{$favicon_url}">
<link href="{$css_dir}global.css" rel="stylesheet">
<link href="{$css_dir}maintenance.css" rel="stylesheet">
{if $isRtl}
<link href="{$css_dir}rtl.css" rel="stylesheet">
{/if}
</head>
<body>
<div id="maintenance" class="text-center">
<img class="center-block img-responsive" src="{$logo_url}" alt="" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}"{/if}>
<h1>{l s='We\'ll be back soon.'}</h1>
{$HOOK_MAINTENANCE}
<p>
{l s='We are currently updating our shop and will be back really soon.'}
<br>
{l s='Thanks for your patience.'}
</p>
</div>
{hook h='displayMaintenance'}
</body>
</html>