emmas.place/life/sunshine/journal.php
zepp 0aead1445c rays of sunshine category work
added partial to go back to category
added template pages for two topics to work on
added the two topics to the category page
2025-02-03 00:47:20 -05:00

27 lines
841 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>a gallery of emma</title>
<link rel="icon" type="image/x-icon" href="/img/site/assets/favicon.ico">
<link rel="stylesheet" href="/style/style.css">
</head>
<body>
<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/includes/header.php'); ?>
<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/includes/nav.php'); ?>
<main>
<section>
<h1 id="top">
keeping a journal - what it is and what it means for me
</h1>
<?php
require_once($_SERVER['DOCUMENT_ROOT'] . '/includes/sunshine-category.php'); ?>
<p>back to the <a href="#top">top of the page</a></p>
</main>
<?php require_once($_SERVER['DOCUMENT_ROOT'] . '/includes/footer.php'); ?>
</body>
</html>