Skip to content

Commit

Permalink
fix: Books home page
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbruce committed Feb 23, 2024
1 parent a889002 commit 7304f05
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions site-root/public/books/index.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
<?php
$pageTitle = "Time: Mastering the Mundane | Books | Mastering the Mundane";
$relativeToRoot = '../';

require_once('../../head.php');
require_once('../../header.php');
require_once($relativeToRoot . 'constants.php');

$pageTitle = "Books | Mastering the Mundane";

$description = 'Josh Bruce has spent his life trying to make peace with time, space, and money while also helping others do the same. Heʼs worked with individuals, The United States Federal Government Agencies, micro-businesses, Fortune 500 companies in the for-profit and not-for-profit categories.';

$poster = $url . '/media/poster.png';

require_once($relativeToRoot . 'head.php');
require_once($relativeToRoot . 'header.php');
?>
<article is="book-details">
<section>
Expand All @@ -22,4 +30,4 @@
</ul>
</section>
</article>
<?php require_once('../../foot.php'); ?>
<?php require_once($relativeToRoot . 'foot.php'); ?>

0 comments on commit 7304f05

Please sign in to comment.