summaryrefslogtreecommitdiff
path: root/MobileCydia.app/error.html
blob: e5e2d0d4905c9c46b49d321dac64dbc55505bc9d (plain)
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
<?xml version="1.0" encoding="UTF-16"?>
<html><head>
    <title localize="NETWORK_ERROR"></title>
    <meta name="viewport" content="width=320px, minimum-scale=1.0, maximum-scale=1.0"/>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <script type="text/javascript" src="menes/menes.js"></script>
    <script type="text/javascript" src="localize.js"></script>
    <base target="_blank"/>

    <style>
        body {
            background: #c7ced5 url(cydia://uikit-image/UIPinstripe.png);
            background-size: 7px 1px;
            display: table;
            font-family: Helvetica;
            height: 100%;
            width: 100%;
            margin: 0;
            text-shadow: rgba(255, 255, 255, 0.75) 1px 1px 0
        }

        div.page {
            display: table-cell;
            text-align: center;
            width: 320px;
            margin: 0 auto;
            vertical-align: middle;
        }

        div.title {
            font-size: 32px;
        }

        div.error {
            font-size: 24px;
        }
    </style>
</head><body><div class="page">

<div class="title" localize="UNABLE_TO_LOAD"></div>

<div class="error">(<script>
    document.write(decodeURI(location.search.substring(1)));
</script>)</div>

</div></body></html>