-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patha.htm
514 lines (430 loc) · 29.4 KB
/
a.htm
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="/i/3p/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/themes/smoothness/jquery-ui.css">
<script src="/i/3p/jquery-ui.min.js" defer="defer"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="/i/c/nga_20170921.css" rel="stylesheet">
<script type="text/javascript" src="/i/js/colorbox-min.js" defer="defer"></script>
<link rel="canonical" href="https://garden.org/plants/view/117408/Aloinopsis-luckhoffii/" />
<link rel="search" href="https://garden.org/i/search/opensearch_plants.xml" type="application/opensearchdescription+xml" title="NGA Database search" />
<meta name="description" content="Plant database entry for Aloinopsis luckhoffii with 10 images and 27 data details.">
<meta name="msapplication-TileImage" content="/i/p/nga/nga_144.png">
<link rel="apple-touch-icon" href="/i/p/nga/nga_57.png"/>
<link rel="apple-touch-icon" sizes="72x72" href="/i/p/nga/nga_72.png"/>
<link rel="apple-touch-icon" sizes="114x114" href="/i/p/nga/nga_114.png"/>
<title>Aloinopsis luckhoffii - Garden.org</title>
<script>
$(document).ready(function() {
// No framing the site, please.
if(top!=self) { top.location.replace(document.location); }
// ////////////////////////////////////////////
// The below forces the footer to stick to the bottom, if the page isn't tall enough.
var docHeight = $(window).height();
var footerHeight = $("#atpfooter").height();
var footerTop = $("#atpfooter").position().top + footerHeight;
if (footerTop < docHeight) {
$("#atpfooter").css("margin-top", -22+ (docHeight - footerTop) + "px");
}
// ////////////////////////////////////////////
// The below loads the system messages, mail, etc. into the modal.
var trigger = $("body").find('[data-toggle="modal"]');
trigger.click(function(e) {
e.preventDefault();
var theModal = $(this).attr("data-target");
var ngaview = $(this).attr("data-ngaview");
var thetitle = $(this).attr("title");
$(theModal).find(".modal-title").html(thetitle);
var uri = theModal.replace("#", "");
if (uri == "ModalNGAView") {
$.get("/apps/atpview/show/"+ngaview+"/", function(data) {
var modal = $(this);
$(theModal).find(".modal-body").html(data);
});
} else {
$.get("/i/ajax/modal/"+uri+".php", function(data) {
var modal = $(this);
$(theModal).find(".modal-body").html(data);
});
};
});
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-4809383-1', 'auto');
</script>
</head>
<body><!-- BuySellAds Ad Code -->
<script type="text/javascript">
(function(){
var bsa = document.createElement('script');
bsa.type = 'text/javascript';
bsa.async = true;
bsa.src = '//s3.buysellads.com/ac/bsa.js';
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);
})();
</script>
<!-- End BuySellAds Ad Code -->
<div class="modal fade" id="ModalMail" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">New and Unread Tree-Mails</h4>
</div>
<div class="modal-body">
<img src="/i/icon/loading.gif">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="ModalNGAView" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel"></h4>
</div>
<div class="modal-body">
<img src="/i/icon/loading.gif">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="ModalSysMsg" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">New Messages from Garden.org</h4>
</div>
<div class="modal-body">
<img src="/i/icon/loading.gif">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<nav role="navigation" class="navbar navbar-default navbar-fixed-top" id="nganav1">
<div class="fluid-container">
<div class="navbar-header navbar-left pull-left">
<a href="/"><i class="fa fa-home fa-fw fa-1x fahomeicon"></i></a>
</div>
<div class="navbar-header navbar-right pull-right">
<ul class="nav pull-left">
<li class="navbar-text pull-left"><a href="/users/join/"><i class="fa fa-user-plus"> </i> Signup</a></li>
<li class="navbar-text pull-left"><a href="/login.php"><i class="fa fa-sign-in"> </i> Login</a></li>
</ul>
<button type="button" data-toggle="collapse" data-target=".navbar-collapse" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="visible-xs-block clearfix"></div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-left">
<ul class="nav navbar-nav" id="nga_dropdowns">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Learning Library <i class="fa fa-caret-down "></i></a>
<ul class="dropdown-menu">
<li><a href="/learn/">Learning Library Homepage</a></li>
<li><a href="/learn/library/plantguide/">Plant Care Guides</a></li>
<li><a href="/learn/library/foodguide/">Food Gardening Guides</a></li>
<li><a href="/learn/library/weeds/">Weed Library</a></li>
<li><a href="/learn/library/pests/">Pest Control Library</a></li>
<li><a href="/courseweb/">Garden Curricula</a></li>
<li><a href="/ideas/podcast/">Podcast</a></li>
<li><a href="/learn/videos/">Videos</a></li>
<li><a href="/nga/searchqa/">Questions and Answers</a></li>
<li><a href="/nga/dictionary/">Garden Dictionary</a></li>
<li><a href="/ediblelandscaping/">Edible Landscaping</a></li>
<li><a href="/urbangardening/">Urban Gardening</a></li>
<li><a href="/learn/articles/">Browse all articles</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Plants Database <i class="fa fa-caret-down "></i></a>
<ul class="dropdown-menu">
<li><a href="/plants/">Plants Database</a></li>
<li><a href="/plants/search/text.php">Search by name</a></li>
<li><a href="/plants/search/advanced.php">Search by characteristics</a></li>
<li class="divider"></li>
<li><a href="/plants/multi/">Landscape Photos</a></li>
<li><a href="/apps/plant_photos/view/">See All New Database Photos</a></li>
<li class="divider"></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Tools & Apps <i class="fa fa-caret-down "></i></a>
<ul class="dropdown-menu">
<li><a href="/apps/">View All Apps</a></li>
<li><a href="/apps/calendar/">Vegetable Planting Calendar</a></li>
<li><a href="/apps/frost-dates/">Frost Dates Lookup</a></li>
<li><a href="/apps/swap/">Seed Swaps</a></li>
<li><a href="/lists/">Plant Lists</a></li>
<li><a href="/nga/calculators/">Gardening Calculators</a></li>
<li><a href="/greenpages/">Green Pages</a></li>
<li><a href="/nga/zipzone/">Zone Lookup</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Community <i class="fa fa-caret-down "></i></a>
<ul class="dropdown-menu">
<li><a href="/ideas/">Gardening News</a></li>
<li><a href="/forums/">Forums</a></li>
<li><a href="/blogs/">Blogs</a></li>
<li><a href="/apps/events/">Gardening Calendar of Events</a></li>
<li><a href="/frogs/">Gardening Knowledgebase</a></li>
<li><a href="/frogs/ask/">Ask a Question</a></li>
<li><a href="/ideas/raffles/">Not-a-Raffle-Raffles</a></li>
<li><a href="/apps/photocontest/">Photo Contests</a></li>
</ul>
</li>
</ul>
</ul>
</div>
</div>
</nav>
<style>
#row_ngalogo {
background-image: url("/pics/2018-10-10/Marilyn/1a3cb2.jpg");
}
</style>
<div class="fluid-container">
<div class="col-xs-12" id="row_ngalogo">
<a href="/"><img src="/i/p/nga/header/logo.png" width="154" height="150" alt="National Gardening Association Logo" class="nga_nav150"></a><a href="/plants/"><img src="/i/p/nga/header/plants.png" width="250" height="150" id="row_text" class="nga_nav150"></a><a href="/special/offers/newsletter_signup.php"><img src="/i/p/newsletter_signup.png" class="nl_signupbutton" style="border:1px solid black;"></a>
</div>
</div>
<div class="container-fluid" id="ngabody"><div class="row" style="margin-bottom:5px;">
<div class="col-sm-8">
<h1 class="page-header"><i><a href="/plants/browse/plants/genus/Aloinopsis/">Aloinopsis</a> luckhoffii</i></h1>
</div>
<div class="col-sm-4 text-right">
<h2 class="page-header">
<form class="form-inline" action="/plants/search/text/" method="get">
<div class="input-group">
<input type="text" class="form-control" name="q" placeholder="Search Plants">
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
</h2>
</div>
</div><div class="row"><div class="col-sm-12"><center><script>
if ($(window).width() > 1024) {
document.write('<ins data-revive-zoneid="3" data-revive-id="311bdfe392f903548d741a903b5c48bb"></ins><scr'+'ipt async src="/rv/www/delivery/asyncjs.php"></scr'+'ipt>');
}
if ($(window).width() < 1025) {
document.write('<ins data-revive-zoneid="2" data-revive-id="311bdfe392f903548d741a903b5c48bb"></ins><scr'+'ipt async src="/rv/www/delivery/asyncjs.php"></scr'+'ipt>');
}
</script></center>
<div class="fluid-container">
<div class="row">
<table class="table table-striped table-bordered table-hover simple-table">
<caption>General Plant Information (<a href="/plants/propose/databox/117408/" class="userlink">Edit</a>)</caption>
<tbody> <tr>
<td style="width:150px;" data-th="">Plant Habit:</td>
<td data-th="">Cactus/Succulent<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Life cycle:</td>
<td data-th="">Perennial<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Sun Requirements:</td>
<td data-th="">Full Sun<BR>
Full Sun to Partial Shade<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Water Preferences:</td>
<td data-th=""><span class="db_tooltip" title="average moisture">Mesic</span><BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Soil pH Preferences:</td>
<td data-th="">Slightly acid (6.1 – 6.5)<BR>
Neutral (6.6 – 7.3)<BR>
Slightly alkaline (7.4 – 7.8)<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Minimum cold hardiness:</td>
<td data-th="">Zone 9a -6.7 °C (20 °F) to -3.9 °C (25 °F)<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Maximum recommended zone:</td>
<td data-th="">Zone 11<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th=""><span class="db_tooltip" title="Write "feet" or "inches" instead of using quotes"><B>Plant Height</B></span>:</td>
<td data-th="">1 to 2 inches</td>
</tr>
<tr>
<td style="width:150px;" data-th=""><span class="db_tooltip" title="Write "feet" or "inches" instead of using quotes"><B>Plant Spread</B></span>:</td>
<td data-th="">2 to 4 inches</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Leaves:</td>
<td data-th="">Evergreen<BR>
Other: Leaves are thick and covered with tubercles and white teeth.<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Flowers:</td>
<td data-th="">Showy<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Flower Color:</td>
<td data-th="">Yellow<BR>
Other: Blooms may be pale yellow, golden yellow, yellowish-bronze or salmon pink.<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Bloom Size:</td>
<td data-th="">1"-2"<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Flower Time:</td>
<td data-th="">Winter<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Underground structures:</td>
<td data-th="">Taproot<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Suitable Locations:</td>
<td data-th="">Houseplant<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Uses:</td>
<td data-th="">Suitable for miniature gardens<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Resistances:</td>
<td data-th="">Drought tolerant<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Propagation: Other methods:</td>
<td data-th="">Division<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Containers:</td>
<td data-th="">Needs excellent drainage in pots<BR>
</td>
</tr>
<tr>
<td style="width:150px;" data-th="">Miscellaneous:</td>
<td data-th="">Goes Dormant<BR>
</td>
</tr>
</tbody></table><P></div>
<div class="col-sm-6"><center><a href="#" data-toggle="modal" data-target="#ModalNGAView" data-ngaview="db_photo-486814" title="Image"><img src="/pics/2018-02-13/ljones26/852a77-300.jpg" width="300" height="300" alt="Image" title="Image" class="thumb"></a><P><script>
document.write('<ins data-revive-zoneid="1" data-revive-id="311bdfe392f903548d741a903b5c48bb"></ins><scr'+'ipt async src="/rv/www/delivery/asyncjs.php"></scr'+'ipt>');
</script><P><P></center></div></div></div><div class="panel panel-default "><div class="panel-heading">Photo gallery:</div><div class="panel-body"><center><div class="plant_thumbbox"><a href="/plants/photo/486814/"><img src="/pics/2018-02-13/ljones26/852a77-175.jpg" width="175" height="175" alt="Image" title="Image" class="plant_thumbimage"></a><br>By <a href="/users/profile/ljones26/">ljones26</a><BR><img src="/i/colorbox/loading.gif" id="plants_images-iid-486814-ljones26-wait" class="rwdicon" width="16" height="16" title="Waiting" alt="Waiting" style="display:none;"> <a href="/not.php"><img src="/i/icon/tu-green.png" class="rwdicon" width="16" height="16" title="Login to give thumbs-ups" class="thumbgreen userlink" alt="Give a thumbs up"></a> <span id="thumbs-plants_images-iid-486814-ljones26" class="social_count" href="#" data-toggle="modal" data-target="#ModalNGAView" data-ngaview="thumbs_count-plants_images-iid-486814" title="Viewing Thumbs"> (<a href="/thumbs/view/plants_images/iid/486814/">3</a>)</span>
</div> <div class="plant_thumbbox"><a href="/plants/photo/77854/"><img src="/pics/2012-03-26/tarev/8d01d2-175.jpg" width="175" height="175" alt="Location: Indoors - Central Valley area, CADate: 2012-03-25A new succulent in our collection - Aloinopsis luckhoffii" title="Location: Indoors - Central Valley area, CADate: 2012-03-25A new succulent in our collection - Aloinopsis luckhoffii" class="plant_thumbimage"></a><br>By <a href="/users/profile/tarev/">tarev</a><BR><img src="/i/colorbox/loading.gif" id="plants_images-iid-77854-tarev-wait" class="rwdicon" width="16" height="16" title="Waiting" alt="Waiting" style="display:none;"> <a href="/not.php"><img src="/i/icon/tu-green.png" class="rwdicon" width="16" height="16" title="Login to give thumbs-ups" class="thumbgreen userlink" alt="Give a thumbs up"></a> <span id="thumbs-plants_images-iid-77854-tarev" class="social_count" href="#" data-toggle="modal" data-target="#ModalNGAView" data-ngaview="thumbs_count-plants_images-iid-77854" title="Viewing Thumbs"> (<a href="/thumbs/view/plants_images/iid/77854/">1</a>)</span>
</div> <div class="plant_thumbbox"><a href="/plants/photo/92171/"><img src="/pics/2012-05-27/valleylynn/005826-175.jpg" width="175" height="175" alt="Location: Pacific Northwest, zone 8Date: Apr 30, 2012 " title="Location: Pacific Northwest, zone 8Date: Apr 30, 2012 " class="plant_thumbimage"></a><br>By <a href="/users/profile/valleylynn/">valleylynn</a><BR><img src="/i/colorbox/loading.gif" id="plants_images-iid-92171-valleylynn-wait" class="rwdicon" width="16" height="16" title="Waiting" alt="Waiting" style="display:none;"> <a href="/not.php"><img src="/i/icon/tu-green.png" class="rwdicon" width="16" height="16" title="Login to give thumbs-ups" class="thumbgreen userlink" alt="Give a thumbs up"></a> <span id="thumbs-plants_images-iid-92171-valleylynn" class="social_count" href="#" data-toggle="modal" data-target="#ModalNGAView" data-ngaview="thumbs_count-plants_images-iid-92171" title="Viewing Thumbs"> (<a href="/thumbs/view/plants_images/iid/92171/">1</a>)</span>
</div> <div class="plant_thumbbox"><a href="/plants/photo/149052/"><img src="/pics/2012-12-01/valleylynn/db62ad-175.jpg" width="175" height="175" alt="Date: Jul 5, 2009Photo courtesy of Truls Jensen and Emma Elliott of Wild Ginger Fa" title="Date: Jul 5, 2009Photo courtesy of Truls Jensen and Emma Elliott of Wild Ginger Fa" class="plant_thumbimage"></a><br>By <a href="/users/profile/valleylynn/">valleylynn</a><BR><img src="/i/colorbox/loading.gif" id="plants_images-iid-149052-valleylynn-wait" class="rwdicon" width="16" height="16" title="Waiting" alt="Waiting" style="display:none;"> <a href="/not.php"><img src="/i/icon/tu-green.png" class="rwdicon" width="16" height="16" title="Login to give thumbs-ups" class="thumbgreen userlink" alt="Give a thumbs up"></a> <span id="thumbs-plants_images-iid-149052-valleylynn" class="social_count" href="#" data-toggle="modal" data-target="#ModalNGAView" data-ngaview="thumbs_count-plants_images-iid-149052" title="Viewing Thumbs"> (<a href="/thumbs/view/plants_images/iid/149052/">1</a>)</span>
</div> <div class="plant_thumbbox"><a href="/plants/photo/279990/"><img src="/pics/2014-12-01/springcolor/78ecc9-175.jpg" width="175" height="175" alt="Location: Western WashingtonDate: 2014-11-30" title="Location: Western WashingtonDate: 2014-11-30" class="plant_thumbimage"></a><br>By <a href="/users/profile/springcolor/">springcolor</a><BR><img src="/i/colorbox/loading.gif" id="plants_images-iid-279990-springcolor-wait" class="rwdicon" width="16" height="16" title="Waiting" alt="Waiting" style="display:none;"> <a href="/not.php"><img src="/i/icon/tu-green.png" class="rwdicon" width="16" height="16" title="Login to give thumbs-ups" class="thumbgreen userlink" alt="Give a thumbs up"></a> <span id="thumbs-plants_images-iid-279990-springcolor" class="social_count" href="#" data-toggle="modal" data-target="#ModalNGAView" data-ngaview="thumbs_count-plants_images-iid-279990" title="Viewing Thumbs"> (<a href="/thumbs/view/plants_images/iid/279990/">1</a>)</span>
</div> <div class="plant_thumbbox"><a href="/plants/photo/92173/"><img src="/pics/2012-05-27/valleylynn/626d4d-175.jpg" width="175" height="175" alt="Location: Pacific Northwest, zone 8Date: Apr 30, 2012 " title="Location: Pacific Northwest, zone 8Date: Apr 30, 2012 " class="plant_thumbimage"></a><br>By <a href="/users/profile/valleylynn/">valleylynn</a><BR><img src="/i/colorbox/loading.gif" id="plants_images-iid-92173-valleylynn-wait" class="rwdicon" width="16" height="16" title="Waiting" alt="Waiting" style="display:none;"> <a href="/not.php"><img src="/i/icon/tu-green.png" class="rwdicon" width="16" height="16" title="Login to give thumbs-ups" class="thumbgreen userlink" alt="Give a thumbs up"></a> <span id="thumbs-plants_images-iid-92173-valleylynn" class="social_count" href="#" data-toggle="modal" data-target="#ModalNGAView" data-ngaview="thumbs_count-plants_images-iid-92173" title="Viewing Thumbs"> </span>
</div> <div class="plant_thumbbox"><a href="/plants/photo/149053/"><img src="/pics/2012-12-01/valleylynn/11ce76-175.jpg" width="175" height="175" alt="Date: Oct 5, 2009Photo courtesy of Truls Jensen and Emma Elliott of Wild Ginger Fa" title="Date: Oct 5, 2009Photo courtesy of Truls Jensen and Emma Elliott of Wild Ginger Fa" class="plant_thumbimage"></a><br>By <a href="/users/profile/valleylynn/">valleylynn</a><BR><img src="/i/colorbox/loading.gif" id="plants_images-iid-149053-valleylynn-wait" class="rwdicon" width="16" height="16" title="Waiting" alt="Waiting" style="display:none;"> <a href="/not.php"><img src="/i/icon/tu-green.png" class="rwdicon" width="16" height="16" title="Login to give thumbs-ups" class="thumbgreen userlink" alt="Give a thumbs up"></a> <span id="thumbs-plants_images-iid-149053-valleylynn" class="social_count" href="#" data-toggle="modal" data-target="#ModalNGAView" data-ngaview="thumbs_count-plants_images-iid-149053" title="Viewing Thumbs"> </span>
</div> <div class="plant_thumbbox"><a href="/plants/photo/369050/"><img src="/pics/2016-01-03/robertduval14/f098fe-175.jpg" width="175" height="175" alt="photo credit: Stephen Boisvert" title="photo credit: Stephen Boisvert" class="plant_thumbimage"></a><br>By <a href="/users/profile/robertduval14/">robertduval14</a><BR><img src="/i/colorbox/loading.gif" id="plants_images-iid-369050-robertduval14-wait" class="rwdicon" width="16" height="16" title="Waiting" alt="Waiting" style="display:none;"> <a href="/not.php"><img src="/i/icon/tu-green.png" class="rwdicon" width="16" height="16" title="Login to give thumbs-ups" class="thumbgreen userlink" alt="Give a thumbs up"></a> <span id="thumbs-plants_images-iid-369050-robertduval14" class="social_count" href="#" data-toggle="modal" data-target="#ModalNGAView" data-ngaview="thumbs_count-plants_images-iid-369050" title="Viewing Thumbs"> </span>
</div> <div class="plant_thumbbox"><a href="/plants/photo/369055/"><img src="/pics/2016-01-03/robertduval14/408f6a-175.jpg" width="175" height="175" alt="Image" title="Image" class="plant_thumbimage"></a><br>By <a href="/users/profile/robertduval14/">robertduval14</a><BR><img src="/i/colorbox/loading.gif" id="plants_images-iid-369055-robertduval14-wait" class="rwdicon" width="16" height="16" title="Waiting" alt="Waiting" style="display:none;"> <a href="/not.php"><img src="/i/icon/tu-green.png" class="rwdicon" width="16" height="16" title="Login to give thumbs-ups" class="thumbgreen userlink" alt="Give a thumbs up"></a> <span id="thumbs-plants_images-iid-369055-robertduval14" class="social_count" href="#" data-toggle="modal" data-target="#ModalNGAView" data-ngaview="thumbs_count-plants_images-iid-369055" title="Viewing Thumbs"> </span>
</div> <div class="plant_thumbbox"><a href="/plants/photo/369057/"><img src="/pics/2016-01-03/robertduval14/71003e-175.jpg" width="175" height="175" alt="photo credit: Michael Wolf" title="photo credit: Michael Wolf" class="plant_thumbimage"></a><br>By <a href="/users/profile/robertduval14/">robertduval14</a><BR><img src="/i/colorbox/loading.gif" id="plants_images-iid-369057-robertduval14-wait" class="rwdicon" width="16" height="16" title="Waiting" alt="Waiting" style="display:none;"> <a href="/not.php"><img src="/i/icon/tu-green.png" class="rwdicon" width="16" height="16" title="Login to give thumbs-ups" class="thumbgreen userlink" alt="Give a thumbs up"></a> <span id="thumbs-plants_images-iid-369057-robertduval14" class="social_count" href="#" data-toggle="modal" data-target="#ModalNGAView" data-ngaview="thumbs_count-plants_images-iid-369057" title="Viewing Thumbs"> </span>
</div> </center></div></div><P><div class="panel panel-default "><div class="panel-heading">Discussion Threads about this plant</div><div class="panel-body">
<table class="table table-striped table-bordered table-hover pretty-table table_has_headers">
<thead><tr>
<th>Thread Title</th>
<th>Last Reply</th>
<th>Replies</th>
</tr></thead>
<tbody> <tr>
<td data-th="Thread Title"><a href="/thread/view/74429/Synonym/">Synonym</a> by plantladylin</td>
<td data-th="Last Reply">Nov 16, 2017 7:36 PM</td>
<td data-th="Replies">1</td>
</tr>
<tr>
<td data-th="Thread Title"><a href="/thread/view/17076/my-succulent-failures/">my succulent failures</a> by tarev</td>
<td data-th="Last Reply">Jul 2, 2013 6:00 PM</td>
<td data-th="Replies">26</td>
</tr>
<tr>
<td data-th="Thread Title"><a href="/thread/view/14042/Cold-hardy-succulents-please-share-your-experiences/">Cold hardy succulents ~ please share your experiences?</a> by pod</td>
<td data-th="Last Reply">Apr 1, 2013 10:13 PM</td>
<td data-th="Replies">174</td>
</tr>
<tr>
<td data-th="Thread Title"><a href="/thread/view/5798/Your-succulent-pictures/">Your succulent pictures.</a> by Dutchlady1</td>
<td data-th="Last Reply">May 17, 2012 12:35 PM</td>
<td data-th="Replies">251</td>
</tr>
</tbody></table></div></div><P><P><center><script>
if ($(window).width() > 1024) {
document.write('<ins data-revive-zoneid="3" data-revive-id="311bdfe392f903548d741a903b5c48bb"></ins><scr'+'ipt async src="/rv/www/delivery/asyncjs.php"></scr'+'ipt>');
}
if ($(window).width() < 1025) {
document.write('<ins data-revive-zoneid="2" data-revive-id="311bdfe392f903548d741a903b5c48bb"></ins><scr'+'ipt async src="/rv/www/delivery/asyncjs.php"></scr'+'ipt>');
}
</script></center><P><P><div class="panel panel-default "><div class="panel-body"><B>Adding Actions:</B><P><a href="/plants/propose/ajax_photo/117408/" class="userlink">» Upload a photo</a><br><a href="/plants/add_comment.php?pid=117408" class="userlink">» Post a comment</a><BR><a href="/plants/propose/event_report/117408/" class="userlink">» Add an event report</a><br><P><p></div></div><P><a href="/plants/propose/new_plant/" class="userlink">« Add a new plant to the database</a><P><a href="/plants/">« The Plants Database Front Page</a></div></div></div><div id="atpfooter"><div class="container-fluid">
<div class="col-sm-4">
<a href="/">Garden.org Homepage</a><BR>
<a href="/help/">Help using the site</a><BR>
<a href="/about/">About</a><BR>
<a href="/about/contact/">Contact</a><BR>
<a href="/about/tos/">Terms of Service</a><BR>
<a href="/about/privacy/">Privacy</a><BR>
<a href="/users/memberlist/">Memberlist</a><BR>
<a href="/special/acorns/">Acorns</a><BR>
<a href="/about/links/">Links</a><BR>
<a href="/apps/ask/">Ask a Question</a><BR>
<a href="/newsletter/">Newsletter</a><BR>
<p>© 1972 - 2019 <a href="/">National Gardening Association</a><p>
Times are presented in US Central Standard Time<p>
</div>
<div class="col-sm-2 text-left">
<a href="https://www.pinterest.com/ngagrows/"><i class="fa fa-pinterest-square fa-fw fa-2x"></i>Pinterest</a><br>
<a href="https://www.facebook.com/Garden.Org/"><i class="fa fa-facebook-square fa-fw fa-2x"></i>Facebook</a><br>
<a href="https://www.youtube.com/user/nationalgardening"><i class="fa fa-youtube-square fa-fw fa-2x"></i>Youtube</a><br>
<a href="https://twitter.com/NatlGardening"><i class="fa fa-twitter-square fa-fw fa-2x"></i>Twitter</a><br>
<a href="https://www.instagram.com/nationalgardeningassoc/"><i class="fa fa-instagram fa-fw fa-2x"></i>Instagram</a><br>
</div><div class="col-sm-6 text-right"><p>Today's site banner is by <a href="/users/profile/Marilyn/">Marilyn</a> and is called "<a href="/thread/go/102714/">'Crater Lake Blue'</a>"<p></div></div></div><script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script><script type="text/javascript" src="/i/js/nga_20170818.js"></script>
<script>
ga('send', 'pageview');
</script>
</body></html>