19 lines
454 B
PHP
19 lines
454 B
PHP
<!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>
|