initial commit

This commit is contained in:
ClariSys 2025-03-11 21:03:39 -07:00
parent 46328a92a8
commit c449f9d9ac
12 changed files with 457 additions and 4 deletions

22
templates/article.html Normal file
View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> {title} </title>
<link rel="stylesheet" href="/stylesheet.css">
</head>
<body>
<header>
<nav>
{nav}
</nav>
</header>
<main>
{main}
</main>
<footer>
{footer}
</footer>
</body>
</html>