This commit is contained in:
Flatlogic Bot 2025-09-17 11:16:22 +00:00
parent 5323ad896f
commit 91e2347c7a

View File

@ -17,11 +17,11 @@ try {
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Добро пожаловать</title>
<title>Hello world</title>
<meta name="description" content="A clean blog to publish updates and articles.">
<!-- Open Graph -->
<meta property="og:title" content="Добро пожаловать">
<meta property="og:title" content="Hello world">
<meta property="og:description" content="A clean blog to publish updates and articles.">
<meta property="og:type" content="website">
<meta property="og:url" content="http://<?php echo $_SERVER['HTTP_HOST']; ?>">
@ -37,13 +37,13 @@ try {
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm">
<div class="container">
<a class="navbar-brand" href="/">Добро пожаловать</a>
<a class="navbar-brand" href="/">Hello world</a>
</div>
</nav>
<main class="container my-5">
<div class="text-center mb-5">
<h1 class="display-4">Добро пожаловать</h1>
<h1 class="display-4">Hello world</h1>
<p class="lead text-muted">The latest articles and updates, just for you.</p>
</div>
@ -72,7 +72,7 @@ try {
<footer class="footer mt-auto py-3 bg-white border-top">
<div class="container text-center">
<span class="text-muted">&copy; <?php echo date("Y"); ?> Добро пожаловать. All Rights Reserved. |
<span class="text-muted">&copy; <?php echo date("Y"); ?> Hello world. All Rights Reserved. |
<?php if (isset($_SESSION['user_id'])): ?>
<a href="admin.php">Admin</a> | <a href="logout.php">Logout</a>
<?php else: ?>