Bicycle/System/view/errors/404.html
Egor Isaev b516ca07dc Initial commit: Bicycle PHP MVC micro-framework
Core MVC, HTTP client, Session, Cookie, Config, HTTPException — 111 PHPUnit tests.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-04 10:04:19 +03:00

21 lines
357 B
HTML

<?php
/**
* @package Bicycle
* @author Egor Isaev
* @description 404.html
* @copyright (c) 03/06/2026
*/
?>
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>404 — Страница не найдена</title>
</head>
<body>
<h1>404</h1>
<p>Страница не найдена.</p>
</body>
</html>