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
This commit is contained in:
emma 2025-02-03 00:47:20 -05:00
parent fc01079126
commit 0aead1445c
4 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1 @@
<p>back to <a href="/life/sunshine.php">emma's rays of sunshine - category</a></p>

View File

@ -22,6 +22,10 @@
<ul>
<li>
<a href="./sunshine/journal.php">keeping a journal</a> - this category is about my journal keeping habits. i also show my journal and talk about the role it plays in my life
</li>
<li>
<a href="./sunshine/traits.php">a list of positive traits</a> - this is a list of positive traits that was provided to my by my therapist. i thought i'd share it here too. i also talk about how you can approach these if you are unsure
</li>
</ul>
</section>

26
life/sunshine/journal.php Normal file
View File

@ -0,0 +1,26 @@
<!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>

26
life/sunshine/traits.php Normal file
View File

@ -0,0 +1,26 @@
<!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">
a list of positive traits for thought exercises or writing
</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>