added partial to go back to category added template pages for two topics to work on added the two topics to the category page
27 lines
844 B
PHP
27 lines
844 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">
|
|
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>
|