This repository has been archived by the owner on Apr 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
home.php
92 lines (86 loc) · 3.93 KB
/
home.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
<?
$page_title = "Home";
$page_template = "Main";
?>
<?php include("includes/_header.php"); ?>
<div class="row featured">
<div class="twelve columns">
<!-- Four spots on the slider, Donate, Lead a Drive, Volunteer, Marketing Blurb -->
<div class="orbit-wrapper" style="width: 950px; height: 350px" id="featured">
<img src="http://placehold.it/980x350">
<img src="http://placehold.it/980x350">
<img src="http://placehold.it/980x350">
<img src="http://placehold.it/980x350">
</div>
<ul class="button-group radius">
<li><a href="#" class="button radius">Donate</a></li>
<li><a href="#" class="button radius">Lead a Drive</a></li>
<li><a href="#" class="button radius">Volunteer</a></li>
<li><a href="#" class="button radius">Featured</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="four columns">
<h3>970,516 Children</h3>
<p>Have received holiday gifts or back-to-school supplies through
Family Giving Tree since 1990</p>
</div>
<div class="four columns">
<h3>123,228 Gifts</h3>
<p>Delivered to needy children. We provide gifts during the holidays,
and back-to-school supplies during the school year.</p>
</div>
<div class="four columns">
<h3>89%</h3>
<p>of every donation we raise goes straight to participating charities</p>
</div>
</div>
<div class="row">
<div class="twelve columns">
<h3>About</h3>
<div class="row">
<div class="nine columns">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer malesuada dapibus fermentum. Sed at velit massa. Sed consectetur bibendum magna nec pulvinar. Suspendisse posuere auctor enim nec malesuada. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer malesuada dapibus fermentum. Sed at velit massa. Sed consectetur bibendum magna nec pulvinar. Suspendisse posuere auctor enim nec malesuada. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. <a href="">learn more »</a></p>
</div>
<div class="three columns">
<img src="http://placehold.it/200x200">
</div>
</div>
</div>
</div>
<div class="row">
<div class="twelve columns">
<h3>News</h3>
<div class="row">
<div class="four columns">
<h4>FGT on eBay</h4>
<p>Looking for another way to support the Family Giving Tree?
Check out eBay’s Facebook page to see how you can help
without spending a penny. Simply complete the form and eBay will
donate a supply-filled… <a href="">more »</a></p>
</div>
<div class="four columns">
<h4>ZurbWIRED</h4>
<p>After three attempts to submit a winning application to the zany
folks at ZURB, and among so many excellent proposals from local
nonprofits at that, we’ve finally been chosen as this year’s…
<a href="">more »</a></p>
</div>
<div class="four columns">
<h4>Back to School & STEM</h4>
<p>Children from low-income families have many barriers to success in the
classroom, let alone engaging in career fields related to Science,
Technology, Engineering and Mathematics (STEM)…
<a href="">more »</a></p>
</div>
</div>
</div>
</div>
<?php include("includes/_footer.php"); ?>
<script type="text/javascript">
$(window).load(function() {
$('#featured').orbit();
});
</script>