diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-08-02 00:07:34 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:08:12 +0000 |
commit | 7b0ce2dae1de402fa371933b3254bf19b81a89eb (patch) | |
tree | de4092e90e986e872cb6cbaa5006a5d38445d1a8 /Cydia.app/error.html | |
parent | 5afbb4b7d503caece8ad938cb7b53a1fd4175ce9 (diff) |
Added settings and sources to manage and fixed a few small nits.
Diffstat (limited to 'Cydia.app/error.html')
-rw-r--r-- | Cydia.app/error.html | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/Cydia.app/error.html b/Cydia.app/error.html new file mode 100644 index 0000000..f72240d --- /dev/null +++ b/Cydia.app/error.html @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-16"?> +<html><head> + <title>Network Error</title> + <meta name="viewport" content="width=320, minimum-scale=1.0, maximum-scale=1.0"/> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> + + <style> + body { + background: url(pinstripe.png); + display: table; + font-family: Helvetica; + height: 337px; + margin: 0; + text-shadow: rgba(255, 255, 255, 0.75) 1px 1px 0 + } + + div.page { + display: table-cell; + text-align: center; + margin: 0 auto; + vertical-align: middle; + width: 320px; + } + + div.title { + font-size: 32px; + } + + div.error { + font-size: 24px; + } + </style> +</head><body><div class="page"> + +<div class="title">Unable To Load</div> + +<div class="error">(<script> + document.write(decodeURI(location.search.substring(1))); +</script>)</div> + +</div></body></html> |