20240502#1

This commit is contained in:
User
2024-05-02 11:29:58 +03:00
parent 88b597d78d
commit e03c9bccfc
31 changed files with 208 additions and 147 deletions

View File

@@ -1,15 +0,0 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rmphp - <?=$this->getPoint('title')?></title>
<link href="/assets/css/style.css?1" rel="stylesheet">
</head>
<body>
<?=$this->getPoint('main')?>
<script type="text/javascript" src="/assets/js/script.js?1"></script>
<?=$this->getPoint('jsscript')?>
</body>
</html>

View File

@@ -1,38 +0,0 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<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: Arial, 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>
<div class="err-page">
<div class="err-page__header">404</div>
<div class="err-page__text">Page Not Found</div>
</div>
</body>
</html>

View File

@@ -1,38 +0,0 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<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: Arial, 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>
<div class="err-page">
<div class="err-page__header">501</div>
<div class="err-page__text">Not Implemented</div>
</div>
</body>
</html>

View File

@@ -1,9 +0,0 @@
<main>
<div class="main-section">
<div class="errBlock">
<div class="center">
<?=(!empty($this->data->errorText))?$this->data->errorText:""?>
</div>
</div>
</div>
</main>

View File

@@ -1,8 +0,0 @@
<article>
<main>
<div class="main-block">
<div class="main-block__header">Hello</div>
<div class="main-block__text">Now is <?=$this->date?></div>
</div>
</main>
</article>