base for output and styling

This commit is contained in:
Satria 2026-05-25 18:44:42 +07:00
commit bc21240e9f
7 changed files with 366 additions and 1 deletions

20
template.html Normal file
View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>[[TITLE]]</title>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<header>
<h1>[[TITLE]]</h1>
</header>
<main>
[[CONTENT]]
</main>
<footer>
<p>&copy; [[YEAR]] [[NAME]]. All rights reserved.</p>
</footer>
</body>
</html>