init template

This commit is contained in:
2023-10-17 12:54:59 +05:30
commit 42cddb207a
8 changed files with 2438 additions and 0 deletions

20
_includes/base.liquid Normal file
View File

@@ -0,0 +1,20 @@
<!doctype html>
<html>
<head>
<title>{{ site.name }}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="{{ desc | default: site.desc }}">
<link rel="stylesheet" href="/pico.min.css">
</head>
<body class=".grid" style="min-width:100dvh;min-width:100vh;">
<header>
<h1>{{ site.name }}</h1>
</header>
<main>
{{ content }}
</main>
<footer>
</footer>
</body>
</html>