design-patterns/public/index.php
2025-07-03 12:02:19 +03:00

43 lines
889 B
PHP

<!doctype html>
<html lang="uk">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Патерни</title>
<link rel="stylesheet" href="assets/css/agate.min.css">
<script src="assets/js/highlight.min.js"></script>
<script src="assets/js/stylus.min.js"></script>
<style>
pre {
font-family: Consolas, monospace;
}
</style>
</head>
<body>
<main>
<?php
use Pattern\Creational\Singleton;
require '../vendor/autoload.php';
require '../src/helpers.php';
// Creational patterns
require '../code/singleton.php';
?>
</main>
<script>hljs.highlightAll();</script>
</body>
</html>