bunch of random ass shit tbh

This commit is contained in:
2026-01-15 10:50:34 +01:00
parent 78c43c630a
commit 241121b355
8 changed files with 95 additions and 26 deletions

View File

@@ -1,9 +1,7 @@
<!DOCTYPE html>
<html lang="{{config.lang}}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{metadata.title}}</title>
{{page.head}}
</head>
<body>
<header>
@@ -12,13 +10,12 @@
<main>
<article>
{{content}}
{{page.content}}
</article>
</main>
<footer>
{{footer}}
{{page.footer}}
</footer>
</body>
</html>

View File

@@ -1,5 +1,5 @@
<footer>
<p>Strona napisana przez: {{author}}</p>
<p>Blog owned by: {{config.author}}</p>
<ul>
{{if email}}
<li><a href="mailto:{{email}}">{{email}}</a></li>

View File

@@ -1,6 +1,6 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{title}}</title>
<title>{{metadata.title}}</title>
<link rel="stylesheet" href="/style/style.css">
</head>

View File

@@ -1,3 +1,3 @@
<header>
<h1>{{title}}</h1>
<h1>{{metadata.title}}</h1>
</header>

View File

@@ -1,18 +1,18 @@
<!DOCTYPE html>
<html lang="{{lang}}">
<html lang="{{config.lang}}">
<head>
{{head}}
{{page.head}}
</head>
<body>
<header>
{{header}}
{{page.header}}
</header>
<main>
{{main}}
{{page.main}}
</main>
<footer>
{{footer}}
{{page.footer}}
</footer>
</body>
</html>