20240413#8
This commit is contained in:
@@ -1,10 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>404</title>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>404 Page Not Found</title>
|
||||
<style>
|
||||
body{
|
||||
font-family: Arimo, sans-serif;
|
||||
font-size: 15px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: #c9d1e1;
|
||||
}
|
||||
.err-page{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 50vh;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
color:#888;
|
||||
}
|
||||
.err-page__header{
|
||||
font-size: 70px;
|
||||
}
|
||||
.err-page__text{
|
||||
font-size: 30px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Error 404</h1>
|
||||
<div class="err-page">
|
||||
<div class="err-page__header">404</div>
|
||||
<div class="err-page__text">Page Not Found</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,10 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<html lang="ru">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>501</title>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>501 Not Implemented</title>
|
||||
<style>
|
||||
body{
|
||||
font-family: Arimo, sans-serif;
|
||||
font-size: 15px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: #e1c9d1;
|
||||
}
|
||||
.err-page{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 50vh;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
color:#888;
|
||||
}
|
||||
.err-page__header{
|
||||
font-size: 70px;
|
||||
}
|
||||
.err-page__text{
|
||||
font-size: 30px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Error 501</h1>
|
||||
<div class="err-page">
|
||||
<div class="err-page__header">501</div>
|
||||
<div class="err-page__text">Not Implemented</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,5 +1,5 @@
|
||||
<article>
|
||||
<main>
|
||||
<h1>Hello. Now is <?=$this->date?></h1>
|
||||
<h1 style="text-align: center">Hello. Now is <?=$this->date?></h1>
|
||||
</main>
|
||||
</article>
|
||||
Reference in New Issue
Block a user