-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathharvest.php
50 lines (45 loc) · 1.54 KB
/
harvest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
include 'page_components/plant_selection_cookie.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Harvest Guide - Amper Garden Planner</title>
<?php
/*insert html head info that is standard for all pages*/
require_once 'page_components/html_head_info.php';
?>
<meta name="description" content="Your personal plant harvesting guide.">
</head>
<body>
<div class="container">
<?php
/*Insert header*/
require_once 'page_components/header.php';
?>
<main>
<h1 class="page_name">
Your personal harvesting guide
</h1>
<p class="subheader">
Time to reap what you sowed.
</p>
<?php
/*Insert plant selection aside*/
require_once 'page_components/plant_selection.php';
?>
<!-- This is where the main content of the page starts-->
<?php
//create new query for harvest and insert harvest text
$harvest_text = new Content_Query();
$harvest_text->print_harvest();
?>
</main>
<?php
/*Insert footer*/
require_once 'page_components/footer.php';
?>
</div><!--closing tag container-->
<script src="script/js.js"></script>
</body>
</html>