-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadopted.html
107 lines (103 loc) · 4.15 KB
/
adopted.html
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
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; CHARSET=utf-8"/>
<title>Adopt-a-Tree</title>
<link href="bootstrap.min.css" rel="stylesheet" type="text/css"/>
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,900,400italic' rel='stylesheet' type='text/css'/>
<link href="style.css" rel="stylesheet" type="text/css"/>
</head>
<body class="greenovate-green">
<div class="container">
<div class="row-fluid">
<div class="span12">
<h3>Adoption Form Submitted</h3>
<img src="Tree_Drawing.png" style="float:right;margin:5px;width:300px;"/>
<p>Thank you for adopting a street tree! With your help, this young tree will thrive in its new urban environment.</p>
<h3>Tree Adoption:</h3>
<p>Remember to water your new tree at <span id="treeaddress"></span>.</p>
<p>Learn more about your <i><span class="latin" id="latin"></span></i> tree at <a href="http://www.hort.uconn.edu/plants/index.html" target="_blank">http://www.hort.uconn.edu/plants/index.html</a>.</p>
<h3>Adoption Sign and Tree Care Kit:</h3>
<p>Currently, only our tree adopters working with our partners at Roslindale Green and Clean, GreeningRozzie, Southie Trees, and BNAN at City Natives can receive a tree care kit, as long as supplies last. If you live in Roslindale, Mattapan, or South Boston, email info@greenovateboston.org to set up a time with one of those organizations! If you're looking for a sign, please email info@greenovateboston.org as well'
<br/><br/>
</div>
</div>
<div class="row-fluid">
<div class="span6">
<!--
<strong>Franklin Park Coalition</strong>
<br/>
<a href="http://franklinparkcoalition.org">http://franklinparkcoalition.org</a>
<br/>
2010 Colombus Ave
<br/>
Roxbury, MA 02119
<br/>
<br/>
<strong>Garden Club of the Back Bay</strong>
<br/>
<a href="http://www.gardenclubbackbay.org/">http://www.gardenclubbackbay.org/</a>
<br/>
<br/>
<strong>Greening Rozzie</strong>
<br/>
<a href="http://www.greeningrozzie.org/">http://www.greeningrozzie.org/</a>
<br/>
<br/>
-->
</div>
<div class="span6">
<!--
<strong>Boston Natural Areas Network</strong>
<br/>
<a href="http://www.bostonnatural.org/index.htm">http://www.bostonnatural.org/index.htm</a>
<br/>
62 Summer Street, 2nd Floor
<br/>
Boston, MA 02110
<br/>
<br/>
<strong>Arborway Coalition</strong>
<br/>
Jamaica Plain
<br/>
Contact: Sarah Freeman
<br/>
Email: <a href="mailto:freemansherwood@hotmail.com">freemansherwood@hotmail.com</a>
<br/>
<br/>
<br/>
-->
<a class="btn btn-success" href="http://cityofboston.github.io/adopt-trees/">Return to Website</a>
</div>
</div>
</div>
<script type="text/javascript">
function gup(nm){nm=nm.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");var rxS="[\\?&]"+nm+"=([^&#]*)";var rx=new RegExp(rxS);var rs=rx.exec(window.location.href);if(!rs){return null;}else{return rs[1];}}
function replaceAll(src, oldr, newr){
while(src.indexOf(oldr) > -1){
src = src.replace(oldr, newr);
}
return src;
}
var treeaddress = replaceAll(gup("address"), "%20", " ");
treeaddress = replaceAll(treeaddress, "\\", "");
if(typeof document.getElementById("treeaddress").innerText != "undefined"){
document.getElementById("treeaddress").innerText = treeaddress;
}
else{
document.getElementById("treeaddress").textContent = treeaddress;
}
var treetype = gup("type");
var latin = replaceAll(gup("latin"), "%20", " ");
latin = replaceAll(latin, "\\", "");
if(typeof document.getElementById("latin").innerText != "undefined"){
document.getElementById("latin").innerText = latin;
}
else{
document.getElementById("latin").textContent = latin;
}
var rowid = gup("rowid");
</script>
</body>
</html>