diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-10-31 17:30:37 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-10-31 17:30:37 +0100 |
commit | a86522cb83ed2f665161f507531f07dc6437e13f (patch) | |
tree | 28141583f7700ed3227024a9593e6dc8a01f894a /htmls | |
parent | QApplication --> KApplication (diff) | |
download | rekonq-a86522cb83ed2f665161f507531f07dc6437e13f.tar.xz |
Various improvements on the street from Qt demo browser
to KDE reKonq!
- CMakeLists.txt working
- data dirs
- ...
Diffstat (limited to 'htmls')
-rw-r--r-- | htmls/CMakeLists.txt | 4 | ||||
-rw-r--r-- | htmls/notfound.html | 63 |
2 files changed, 67 insertions, 0 deletions
diff --git a/htmls/CMakeLists.txt b/htmls/CMakeLists.txt new file mode 100644 index 00000000..5b35db92 --- /dev/null +++ b/htmls/CMakeLists.txt @@ -0,0 +1,4 @@ +INSTALL( FILES + notfound.html + DESTINATION ${DATA_INSTALL_DIR}/rekonq/htmls +) diff --git a/htmls/notfound.html b/htmls/notfound.html new file mode 100644 index 00000000..77994119 --- /dev/null +++ b/htmls/notfound.html @@ -0,0 +1,63 @@ +<html> +<head> +<title>%1</title> +<style> +body { + padding: 3em 0em; + background: #eeeeee; +} +hr { + color: lightgray; + width: 100%; +} +img { + float: left; + opacity: .8; +} +#box { + background: white; + border: 1px solid lightgray; + width: 600px; + padding: 60px; + margin: auto; +} +h1 { + font-size: 130%; + font-weight: bold; + border-bottom: 1px solid lightgray; + margin-left: 48px; +} +h2 { + font-size: 100%; + font-weight: normal; + border-bottom: 1px solid lightgray; + margin-left: 48px; +} +ul { + font-size: 80%; + padding-left: 48px; + margin: 0; +} +#reloadButton { + padding-left: 48px; +} +</style> +</head> +<body> + <div id="box"> + <img src="data:image/png;base64,IMAGE_BINARY_DATA_HERE" width="32" height="32"/> + <h1>%2</h1> + <h2>When connecting to: %3.</h2> + <ul> + <li>Check the address for errors such as <b>ww</b>.kde.org + instead of <b>www</b>.kde.org</li> + <li>If the address is correct, try to check the network + connection.</li> + <li>If your computer or network is protected by a firewall or + proxy, make sure that the browser demo is permitted to access + the network.</li> + </ul> + <br/><br/> + </div> +</body> +</html> |