404
This commit is contained in:
parent
6252a61d19
commit
22bed9b6aa
4 changed files with 141 additions and 1 deletions
51
_sakura/templates/yuuno/errors/http404.tpl
Normal file
51
_sakura/templates/yuuno/errors/http404.tpl
Normal file
|
@ -0,0 +1,51 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Cannot find page</title>
|
||||
<link rel="stylesheet" type="text/css" href="//{{ sakura.urls.content }}/css/yuuno/error.css" />
|
||||
</head>
|
||||
<body>
|
||||
<audio autoplay="">
|
||||
<source src="//{{ sakura.urls.content }}/snd/notfound.ogg" type="audio/ogg" />
|
||||
<source src="//{{ sakura.urls.content }}/snd/notfound.mp3" type="audio/mp3" />
|
||||
</audio>
|
||||
<div id="wrap">
|
||||
<h1>
|
||||
<img src="//{{ sakura.urls.content }}/img/404-info.gif" />
|
||||
The page cannot be found
|
||||
</h1>
|
||||
<p>
|
||||
The page you are looking for might have been removed, had its
|
||||
name changed, or is temporarily unavailable.
|
||||
</p>
|
||||
<hr />
|
||||
<h2>
|
||||
Please try the following:
|
||||
</h2>
|
||||
<ul>
|
||||
<li>
|
||||
If you typed the page address in the Address bar, make
|
||||
sure that it is spelled correctly.
|
||||
</li>
|
||||
<li>
|
||||
Open the <a href="/">flashii.net</a>
|
||||
home page, and then look for links to the information you want.
|
||||
</li>
|
||||
<li>
|
||||
Click the <img src="//{{ sakura.urls.content }}/img/404-back.gif" /><a href="javascript:;" onclick="history.go(-1);">Back</a>
|
||||
button to try another link.
|
||||
</li>
|
||||
<li>
|
||||
Click <img src="//{{ sakura.urls.content }}/img/404-search.gif" /><a href="http://www.bing.com/search?q=flashii">Search</a>
|
||||
to look for information on the Internet.
|
||||
</li>
|
||||
</ul>
|
||||
<h3>
|
||||
HTTP 404 - File not found
|
||||
<br />
|
||||
Internet Explorer
|
||||
</h3>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
79
content/css/yuuno/error.css
Normal file
79
content/css/yuuno/error.css
Normal file
|
@ -0,0 +1,79 @@
|
|||
html {
|
||||
background: url('//cdn.flashii.net/img/satori-error.png') top right no-repeat #FFF;
|
||||
font-family: 'verdana', sans-serif;
|
||||
font-size: 0.8em;
|
||||
}
|
||||
body {
|
||||
margin: 0px 2em;
|
||||
}
|
||||
html, body {
|
||||
min-height: 100%;
|
||||
width: 90;
|
||||
}
|
||||
#wrap {
|
||||
max-width: 34em;
|
||||
}
|
||||
h1, h2, h3, p {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 1em;
|
||||
font-weight: normal;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.5em;
|
||||
margin: 1.33em 0;
|
||||
}
|
||||
h1 img {
|
||||
margin: 0px 0.5em -0.75em 0px;
|
||||
}
|
||||
p {
|
||||
padding: 0px;
|
||||
margin: 2em 0px;
|
||||
line-height: 1.33em;
|
||||
}
|
||||
hr {
|
||||
margin: 1.9em 0px;
|
||||
background: #BBB;
|
||||
border: none;
|
||||
}
|
||||
ul {
|
||||
padding: 0.75em 0px 0px 0px;
|
||||
}
|
||||
li {
|
||||
margin: 0px 0px 0.8em 3.46em;
|
||||
line-height: 1.32em;
|
||||
}
|
||||
a {
|
||||
color: red;
|
||||
}
|
||||
img+a:before {
|
||||
content: ' ';
|
||||
}
|
||||
h3 {
|
||||
margin: 2.5em 0px;
|
||||
}
|
||||
li:nth-child(3) img {
|
||||
margin: -0.2em 0px
|
||||
}
|
||||
li:nth-child(4) img {
|
||||
margin: -0.5em 0px
|
||||
}
|
||||
table {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
opacity: 0;
|
||||
display: none;
|
||||
}
|
||||
table, tr, td {
|
||||
background: rgba(0,0,0,0.2);
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
table img {
|
||||
border-radius: 32px;
|
||||
box-shadow: 0 4px 32px #888;
|
||||
}
|
10
main/404.php
10
main/404.php
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
/*
|
||||
* Flashii.net Main Index
|
||||
*/
|
||||
|
||||
// Include components
|
||||
require_once('/var/www/flashii.net/_sakura/sakura.php');
|
||||
|
||||
// Print page contents
|
||||
print $flashii->_TPL->render('errors/http404.tpl', $renderData);
|
Reference in a new issue