This repository has been archived by the owner on Sep 1, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgarden.php
97 lines (84 loc) · 3.92 KB
/
garden.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!doctype html>
<html class="no-js" lang="en" >
<head>
<title>Park Community School | Garden</title>
<?php include("includes/head.html") ?>
</head>
<body class="page-school">
<!-- NAVIGATION -->
<?php include("includes/topnav.html") ?>
<!-- HEADER SECTION -->
<header class="header-school">
<div class="row">
<div class="medium-8 large-8 columns">
<h1>Park Garden</h1>
<p class="text-capitalize">Cultivation and Enjoyment of Plants</p>
</div>
</div>
</header>
<!-- CONTENT -->
<section>
<div class="row">
<br>
<div class="medium-7 columns">
<h2>Horticulture in the Park</h2>
<p>Horticulture in Park Community School (PCS) is more than just a simple gardening experience, it is one that develops our students’ interests and understanding of the interconnectedness of people, soils, plants, and animals (large and microscopic); generating a practical awareness of where our food comes from and the resources and processes it takes to produce it; the ways in which horticultural practices impact on the environment, and how good practices sustain and enhance the environment.</p>
</div>
<div class="medium-5 columns">
<div class="garden-slider">
<div><img src="images/garden/garden1.jpg" alt="Horticulture at Park Community School"></div>
<div><img src="images/garden/garden2.jpg" alt="Horticulture at Park Community School"></div>
<div><img src="images/garden/garden3.jpg" alt="Horticulture at Park Community School"></div>
</div>
</div>
</div>
<br><br><br>
</section>
<section class="grey-bg">
<div class="row"><div class="small-centered large-1 column text-center hr-logo white-bg"></div></div>
<div class="row">
<div class="medium-6 medium-push-6 columns">
<p>Learning horticulture in PCS is also designed to open pathways to a wide range of learning and eventual careers opportunities such as ‘Horticultural consultant, turf manager, landscape designer, agribusiness consultant, wine consultant, plant pathologist, orchardist, forestry worker and florist.. Collectively, leaning horticulture helps our learners gain valuable, transferable skills in science, technology, numeracy and literacy, self-management and independence skills.</p>
<p>These skills are not an end in themselves, but through learning each process, our students gain personal satisfaction and an incentive to become life-long learners, eager to learn more.</p>
</div>
<div class="medium-6 medium-pull-6 columns">
<img aria-hidden=true src="images/garden/garden4.jpg" alt="Student Shrubs">
</div>
</div>
<br><br><br>
</section>
<section>
<div class="row"><div class="small-centered large-1 column text-center hr-logo grey-bg"></div></div>
<div class="row">
<div class="columns">
<h2>Garden Calendar Monthly</h2>
<p>What is the monthly newletters..... </p>
<ul class="circle">
<li><a href="assets/garden/2018-01.pdf" target="_blank">Issue 01 - Beauties for January 2018</a></li>
<li><a href="assets/garden/2018-03.pdf" target="_blank">Issue 02 - Mulching in March 2018</a></li>
<li><a href="assets/garden/2018-10.pdf" target="_blank">Issue 03 - Gardening Notes: November 2018</a></li>
</ul>
</div>
</div>
<br><br><br>
</section>
<!-- FOOTER -->
<?php include("includes/footer.html") ?>
<!-- End Site Footer -->
<script src="js/vendor/libraries.min.js"></script>
<script src="js/vendor/foundation.min.js"></script>
<script src="js/app.min.js"></script>
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.garden-slider').slick({
autoplay: true,
dots: true,
fade: true
});
});
</script>
</body>
</html>