Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / ui / static / service_unavailable.html @ 9d889386

History | View | Annotate | Download (1.4 kB)

1
{% load branding_tags %}
2

    
3
<!doctype html>
4
<html> 
5
<head> 
6
    <title>{{ BRANDING_SERVICE_NAME  }}</title> 
7
    <link rel="stylesheet" type="text/css" href="/static/snf/css/main.css"/> 
8
    <!--[if lte IE 7]><style type="text/css" media="all">@import url(/static/snf/css/ie.css);</style><![endif]--> 
9
</head>
10
<body class="error_body error_400"> 
11
    <div id="container"> 
12
        <div id='header'> 
13
            <div class="header-logo"> 
14
                <a href="/">
15
                    <img src="{{ BRANDING_COMPUTE_LOGO_URL }}" alt="{{ BRANDING_SERVICE_NAME }}"/>  
16
                </a> 
17
            </div> 
18
        </div> 
19
        <div id="content"> 
20
            <div id="wrapper"> 
21
                <div id="emptymachineslist" style="display:block" class="clearfix error_page"> 
22
                    <h1><span class="msg_header">Oops!</span></h1>
23
                    <div class="error_content">
24
                        <p class="error_desc">
25
                        Service is down for maintenance.<br />
26
                        We expect to be back soon.<br />
27
                        Thanks for your patience.<br />
28
                        <br />
29
                        </p>
30
                    </div>
31
                    <div class="http_error"><span class="msg">service down</span><span class="code"></span></div>
32
                </div>
33
            </div> 
34
        </div> 
35
    </div>
36
</body>
37
</html>