Kompilator

Took 59 minutes
This commit is contained in:
Krzysztof 'KrzysiekSiemv' Smaga
2023-04-30 21:23:20 +02:00
parent e9216f1710
commit 36302fbaf1
7 changed files with 112 additions and 36 deletions
View File
+17 -12
View File
@@ -1,13 +1,18 @@
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Witaj świecie!</title>
<link rel="stylesheet" href="vendor/blog-engine/blog.css"/>
<script type="module" src="vendor/blog-engine/blog.js" defer></script>
</head>
<body>
<h1>Witaj świecie!</h1>
<a href="be_login.php">Zaloguj się</a>
</body>
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Witaj świecie! - Kwiatowy Blog</title>
<link rel='stylesheet' href='vendor/blog-engine/blog.css' />
<link rel='stylesheet' href='public/css/style.css' />
<meta name="author" content="Krzysiek Smaga">
<meta name="keywords" content="nowy, pierwszy, super">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>Kwiatowy Blog</h1>
<p>sdf</p>
</body>
<script src='vendor/blog-engine/blog.js'></script>
<script src='public/js/script.js'></script>
</html>
View File