This commit is contained in:
Krzysztof KrzysiekSiemv Smaga
2024-10-13 19:11:55 +02:00
parent eb805a994b
commit 619e221c61
18 changed files with 317 additions and 59 deletions
+6 -11
View File
@@ -2,23 +2,18 @@
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Witaj świecie! - Kwiatowy Blog</title>
<title>Witaj świecie! - Nowy blog</title>
<link rel='stylesheet' href='vendor/blog-engine/blog.css' />
<link rel='stylesheet' href='dev/css/style.css?v3.2' />
<meta name="author" content="Krzysiek Smaga">
<meta name="keywords" content="nowy, pierwszy, super">
<meta name="author" content="Krzysztof Smaga">
<meta name="keywords" content="nowy, blog, zero">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<?php (isset($_SESSION['uToken_BE'])?include $topbar:""); ?>
<h1>Kwiatowy Blog</h1>
<p>dsfsadf</p>
<?php echo $topbar; ?>
<h1>Nowy blog</h1>
<p>Jest to nowy blog</p>
<a href="be_login.php">Zaloguj się do panelu</a>
</body>
<script src='vendor/blog-engine/blog.js'></script>
<script src='vendor/blog-engine/js/jquery-3.7.0.min.js'></script>
<script src='dev/js/script.js?v3.2'></script>
</html>
+24
View File
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{POST_TITLE} - Nowy blog</title>
<meta name="author" content="Krzysztof Smaga">
<meta name="keywords" content="nowy, blog, zero">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<?php echo $topbar; ?>
<h1>Nowy blog</h1>
<p>Jest to nowy blog</p>
<h3>{POST_TITLE}</h3>
<h5>Dodano {POST_ADDED} przez {POST_AUTHOR}</h5>
<p>{POST_CONTENT}</p>
<p>{POST_VIEWS}</p>
</body>
</html>