-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.closed.tpl
36 lines (29 loc) · 1.08 KB
/
index.closed.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{$contactdata.name}</title>
{*** Charset ***}
<meta charset="windows-1252">
{*** Viewport setting for responsive websites ***}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{*** Generator tag ***}
<meta name="generator" content="{$general.generator}">
{*** Favicon ***}
{if isset($template.settings.IMAGE_FAVICON) and !empty($template.settings.IMAGE_FAVICON)}
<link rel="shortcut icon" href="{$template.settings.IMAGE_FAVICON}" type="image/x-icon" />
{/if}
{*** Stylesheets ***}
<link href="{$template.cdn}{locateFile file='assets/css/template.closed.css'}" type="text/css" rel="stylesheet">
<link href="{$template.cdn}{locateFile file='assets/css/theme.css'}" type="text/css" rel="stylesheet">
</head>
<body>
<div class="site text-center">
<header class="site-brand">
{include file='modules/widgets/logo/logo.tpl'}
</header>
<div class="site-content">
<p>{setting key=frontend_closed_message format=false}</p>
</div>
</div>
</body>
</html>