mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
36 lines
721 B
HTML
36 lines
721 B
HTML
<!--// META -->
|
|
{Context::addHtmlHeader('<meta name="viewport" content="width=1240">')}
|
|
<!--// CSS -->
|
|
<style>
|
|
.xedition-error {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 80px 0 0;
|
|
background-color:#EFEFEF;
|
|
font-family: "Open Sans", sans-serif;
|
|
text-align: center;
|
|
}
|
|
.xedition-error h1 {
|
|
margin: 0 0 19px;
|
|
font-size: 40px;
|
|
font-weight: normal;
|
|
color: #E02B2B;
|
|
line-height: 40px;
|
|
}
|
|
.xedition-error p {
|
|
margin: 0 0 57px;
|
|
font-size: 16px;
|
|
color:#444;
|
|
line-height: 23px;
|
|
}
|
|
</style>
|
|
|
|
<!--// BODY -->
|
|
<section class="xedition-error">
|
|
<h1>{$http_status_code}</h1>
|
|
<p>Oops, Sorry.<br>Page is {$http_status_message}!</p>
|
|
<img src="./img/error.png" width="340" height="400" />
|
|
</section>
|