1<!DOCTYPE html>
2<html lang="{$language_code|escape:'html':'UTF-8'}">
3<head>
4  <meta charset="utf-8">
5  <title>{$meta_title|escape:'html':'UTF-8'}</title>
6  {if isset($meta_description)}
7    <meta name="description" content="{$meta_description|escape:'html':'UTF-8'}">
8  {/if}
9  {if isset($meta_keywords)}
10    <meta name="keywords" content="{$meta_keywords|escape:'html':'UTF-8'}">
11  {/if}
12  <meta name="robots" content="{if isset($nobots)}no{/if}index,follow">
13  <link rel="shortcut icon" href="{$favicon_url}">
14  <link href="{$css_dir}global.css" rel="stylesheet">
15  <link href="{$css_dir}maintenance.css" rel="stylesheet">
16  {if $isRtl}
17    <link href="{$css_dir}rtl.css" rel="stylesheet">
18  {/if}
19</head>
20<body>
21
22<div id="maintenance" class="text-center">
23  <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}>
24  <h1>{l s='We\'ll be back soon.'}</h1>
25  {$HOOK_MAINTENANCE}
26  <p>
27    {l s='We are currently updating our shop and will be back really soon.'}
28    <br>
29    {l s='Thanks for your patience.'}
30  </p>
31</div>
32{hook h='displayMaintenance'}
33</body>
34</html>
35