This commit is contained in:
2025-07-14 22:09:36 -04:00
parent 94c7412081
commit a08c4708e2
7 changed files with 126 additions and 39 deletions

18
generic.php Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<?php include $_SERVER['DOCUMENT_ROOT']."/snippets/head.php"; ?>
<body>
<?php include $_SERVER['DOCUMENT_ROOT']."/snippets/header.php"; ?>
<div class="container">
<div class="content flex-vertical">
<div class="section-one">
<h1>{{ .header }}</h1>
<p>{{ .body }}</p>
</div>
</div>
</div>
<?php include $_SERVER['DOCUMENT_ROOT']."/snippets/footer.php" ?>
</body>
</html>