-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendar.html
1378 lines (1062 loc) · 62.1 KB
/
calendar.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
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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- <link rel="stylesheet" type="text/css" href="/bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css'> -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<!-- Local CSS -->
<link rel="stylesheet" type="text/css" href="../css/main.css">
<link rel="stylesheet" type="text/css" href="../css/nav.css">
<link rel="stylesheet" type="text/css" href="../css/responsive.css">
<link rel="stylesheet" type="text/css" href="../css/calendar.css">
<title>Caldwell Abbay Hall Neighborhood Association</title>
</head>
<body>
<div class="container-fluid">
<header>
<div class="row">
<div class="container">
<div class='col-md-12' id="left_nav">
<nav class="navbar navbar-custom navbar-fixed-top ">
<p class="navbar-brand">
<p class="navbar-brand">Caldwell-Abbay Hall</p>
<ul class="nav navbar-nav navbar-center">
<li class="dropdown">
<a href="#"class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">About CAHNA <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="index.html">CAHNA Home Page</a></li>
<li><a href="history.html">History</a></li>
<li><a href="watch.html">Neighborhood Watch</a></li>
</ul>
</li>
<li><a href="calendar.html">Calendar</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Community <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="https://www.caldwell-abbayhall.com/blog/" target="blank">Blog</a></li>
<li><a href="contact.html">Contact Page</a></li>
<li><a href="https://www.facebook.com/CaldwellAbbayHall" target="blank">Facebook</a></li>
<li><a href="https://nextdoor.com" target="blank">Nextdoor</a></li>
</ul>
</li>
<li><a href="newsletter.html">Newsletter Archive</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Public Works <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="recycle.html">Trash & Recycle</a></li>
<li><a href="civic.html">Voter Information</a></li>
</ul>
</ul>
</div>
</nav>
</div>
</div>
</header>
<div class="row">
<div class="col-md-3 sidebar quote"><a href= "index.html"><img src = "../images/CAHNA_logo_full_color.jpg" alt="Logo click to got to home page. LOGO is a monkey swinging on the words Caldwell Abbay Hall", width=300px, id='logo' class="img_box"></a>
<p>
<P>Neighborhood meeting NEW LOCATION: Crieve Hall Church of Christ at 4806 Trousdale Drive.<br>
This is near Yogi's and Crieve Hall Bagel coffee shop<br>
Join in person at 10:00am. There will be coffee and goodies available at 9:30 am.
<ul>2025 dates are:
<li>Jan 18</li>
<li>April 19</li>
<li>July 19</li>
<li>October 18</li>
</ul>
</P>
</div>
<div class="col-md-7 watch">
<h2>Caldwell-Abbay Hall Calendar</h2>
<div class="welcome">
<h3>2025 Events</h3>
<p><b>Jan 7:</b> Quarterly Brush Collection.</p>
<p><b>Jan 8:</b> Metro school students return to class.</p>
<p><b>Jan 18:</b> Neighborhood Meeting.
</p>
<p><b>March 27:</b> Quarterly Brush Collection.</p>
<h3>2024 Events</h3>
<p><b>Oct 19 9:30 AM(meeting at 10:00am)</b> Neighborhood Meeting * Crieve Hall Church of Christ at 4806 Trousdale Drive across the street from and Crieve Hall Bagel coffee shop. Collecting items for Binkley Elementary. <a href="https://us17.campaign-archive.com/?u=37fff4dfb08727d98d4b85c15&id=f0151cabdb">See list here</a></p>
<p><b>Oct 19 2pm-4pm.</b> Halloween Spooktacular at the <a href="https://events.library.nashville.org/cal/event/eventView.do?b=de&href=/public/cals/MainCal/CAL-8a3e8e4b-909d6365-0190-e6302bf6-00007bad.ics">Edmondson Pike Library</a></p>
<p><b>Oct 16-31.</b> Early Voting at any <a href="https://www.nashville.gov/sites/default/files/2024-09/Early_Voting_Schedule_NOVEMBER_5_2024_State_Fed_Gen_BM_FH_Gvlle_Mun.pdf">
location seen here.</a></p>
<P><b>July 1 due to the heat, trash and recylcing trucks will start their routes at 6am not 7am. Take your carts out the night before.</b></P>
<p><b>Due to fourth of July on Thursday, trash and recycling collection will move to Friday this week.</b></p>
<P>July 4: Farmin' in the Hall is early this week. 9am-noon at 451 Hogan rd.</P>
<p> July 20 Edmondson Pike Library Book Giveaway. 2:00 PM - 4:00 PM</p>
<p> July 27 Neighborhood Meeting. New Date!</p>
<p>Due to Juneteenth on Wednesday, June 19, all trash and recycling collection will move to the following day.</p>
<p>May-September Farmin' in the Hall: local farmers market and food trucks. Thursdays 4:30-7:00 at 451 Hogan rd.</p>
<p><b>January 19:</b> Trash and recycle pick up, delayed one day due to holiday.</p>
<p><b>February 17:</b> Progressive dinner from 6 - 9 pm.</p>
<p><b>March 13:</b> Brush collection begins</p>
<h3>From July 2023</h3>
Southminster Presbyterian Church presented their plans for the property on W Longdale and Harding. This is the first of many meeting about their plans. They plan to expand their Daycare, add a coffee shop, and build a 60 unit space of affordable housing.</p>
<p>The coffee shop would require rezoning for that building only. The other area would not need rezoning</p>
<p>Here is the <a href="https://docs.google.com/document/d/1pOJf059MV2ZMjE352Yl7EVY7P8J1l1zFIK4956w8iCw"> document they presented</a>. They handed a print out of this and it was on the QR code that was on screen during the slide show. Southminster has a form for questions or sign up for emails for their community updates and events, <a href="https://docs.google.com/forms/d/e/1FAIpQLSe6JCXqI-POyQwd8OfJMK6n6u5XSgrd4CIDAE4D0EFViSyMCg/viewform">Fill out the form here.</a> </p>
</div>
</div>
<div class="col-md-2 calendar">
<ul>
<li><h2>School Calendar</h2></li>
<li> <a href="https://www.mnps.org/district_calendar" target="blank">Davidson County School 2024-2025 Calendar</a> <br>Multiple laguages (Arabic | Burmese | Kurdish) on MNPS site.</li>
<li><a href="https://cdnsm5-ss13.sharpschool.com/UserFiles/Servers/Server_32970243/File/District%20Calendar/2024-2025/MNPS%20District%20Calendar%202024-2025%20final%20updated%204.3.24.pdf" target="blank">English</a></li>
<li><a href="https://cdnsm5-ss13.sharpschool.com/UserFiles/Servers/Server_32970243/File/District%20Calendar/2024-2025/April%202024%20Updated/MNPS%20District%20Calendar%202024-2025%20final%20updated%204.3.24_Spanish.pdf" target="blank">Spanish</a></li>
</ul>
<h2>January 2025</h1>
<table>
<thead>
<tr>
<th>S</th>
<th>M</th>
<th>T</th>
<th>W</th>
<th>T</th>
<th>F</th>
<th>S</th>
</tr>
</thead>
<tr>
<td></td>
<td></td>
<td></td>
<td>01</td>
<td>02</td>
<td>
<a href="#Recycle"><i class="fa fa-recycle fa-lg" aria-hidden="true"></i></a>
<div id="Recycle" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>Recycling Pickup</h2>
Recycling pick up for the Caldwell-Abbay Hall area is every other Thursday. Place your Green Cart on the curb by 6 am on the day of pick up.<br>
It is also weekly trash pickup day.
</div>
</div>
</td>
<td>04</td>
</tr>
<tr>
<td>05</td>
<td>06</td>
<td><i class="fa fa-tree fa-lg" aria-hidden="true"></i></td>
<td>08</td>
<td><a href="#newtrash"><i class="fa fa-trash-o fa-lg" aria-hidden="true"></i></a>
<div id="newtrash" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h3>Weekly Trash Pick up</h3>
Trash pick up for the Caldwell-Abbay Hall area is every Thursday. Place your Brown Cart on the curb by 7am on the day of pick up.
</div>
</div></td>
<td>10</td>
<td>11</td>
</tr>
<tr>
<td>12</td>
<td>13</td>
<td>14</td>
<td>15</td>
<td><a href="#Recycle"><i class="fa fa-recycle fa-lg" aria-hidden="true"></i></a>
<div id="Recycle" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>Recycling Pickup</h2>
Recycling pick up for the Caldwell-Abbay Hall area is every other Thursday. Place your Green Cart on the curb by 6 am on the day of pick up.<br>
It is also weekly trash pickup day.
</div>
</div></td>
<td>17</td>
<td><a href="#jan21">18</a>
<div id="jan21" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>October 19th 2024</h2>
<h3>CAHNA Meeting</h3>
Potluck breakfast at 9:30. Meeting at 10:00<br>
</div>
</div></td>
</tr>
<tr>
<td>19</td>
<td>20</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td><a href="#newtrash"><i class="fa fa-trash-o fa-lg" aria-hidden="true"></i></a>
<div id="newtrash" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h3>Weekly Trash Pick up</h3>
Trash pick up for the Caldwell-Abbay Hall area is every Thursday. Place your Brown Cart on the curb by 7am on the day of pick up.
</div>
</div></td>
<td>25</td>
</tr>
<tr>
<td>26</td>
<td>27</td>
<td>28</td>
<td>29</td>
<td><a href="#Recycle"><i class="fa fa-recycle fa-lg" aria-hidden="true"></i></a>
<div id="Recycle" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>Recycling Pickup</h2>
Recycling pick up for the Caldwell-Abbay Hall area is every other Thursday. Place your Green Cart on the curb by 6 am on the day of pick up.<br>
It is also weekly trash pickup day.
</div>
</div></td>
<td>31</td>
<td></td>
</tr>
</table>
<h2>February 2025</h1>
<table>
<thead>
<tr>
<th>S</th>
<th>M</th>
<th>T</th>
<th>W</th>
<th>T</th>
<th>F</th>
<th>S</th>
</tr>
</thead>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>01</td>
</tr>
<tr>
<td>02</td>
<td>03</td>
<td>04</td>
<td>05</td>
<td><a href="#newtrash"><i class="fa fa-trash-o fa-lg" aria-hidden="true"></i></a>
<div id="newtrash" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h3>Weekly Trash Pick up</h3>
Trash pick up for the Caldwell-Abbay Hall area is every Thursday. Place your Brown Cart on the curb by 7am on the day of pick up.
</div>
</div></td>
<td>07</td>
<td>08</td>
</tr>
<tr>
<td>09</td>
<td>10</td>
<td>11</td>
<td>12</td>
<td><a href="#Recycle"><i class="fa fa-recycle fa-lg" aria-hidden="true"></i></a>
<div id="Recycle" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>Recycling Pickup</h2>
<h3>New Pick up Schedule</h3>
Recycling pick up for the Caldwell-Abbay Hall area is every other Thursday. Place your Green Cart on the curb by 7 am on the day of pick up.<br>
It is also weekly trash pickup day.
</div>
</div></td>
<td><i class="fa fa-heart-o fa-lg" aria-hidden="true"></i></td>
<td>15</td>
</tr>
<tr>
<td>16</td>
<td>17</td>
<td>18</td>
<td>19</td>
<td>20</td>
<td><a href="#newtrash"><i class="fa fa-trash-o fa-lg" aria-hidden="true"></i></a>
<div id="newtrash" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h3>Weekly Trash Pick up</h3>
Trash pick up for the Caldwell-Abbay Hall area is every Thursday. Place your Brown Cart on the curb by 7am on the day of pick up.
</div>
</div></td>
<td>22</td>
</tr>
<tr>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
<td><a href="#Recycle"><i class="fa fa-recycle fa-lg" aria-hidden="true"></i></a>
<div id="Recycle" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>Recycling Pickup</h2>
<h3>Brush Pick up</h3>
Recycling pick up for the Caldwell-Abbay Hall area is every other Thursday. Place your Green Cart on the curb by 7 am on the day of pick up.<br>
It is also weekly trash pickup day.
</div>
</div></td>
<td>28</td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<h2>March 2025</h1>
<table>
<thead>
<tr>
<th>S</th>
<th>M</th>
<th>T</th>
<th>W</th>
<th>T</th>
<th>F</th>
<th>S</th>
</tr>
</thead>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>01</td>
</tr>
<tr>
<td>02</td>
<td>03</td>
<td>04</td>
<td>05</td>
<td><a href="#newtrash"><i class="fa fa-trash-o fa-lg" aria-hidden="true"></i></a>
<div id="newtrash" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h3>Weekly Trash Pick up</h3>
Trash pick up for the Caldwell-Abbay Hall area is every Thursday. Place your Brown Cart on the curb by 7am on the day of pick up.
</div>
</div></td>
<td>07</td>
<td>08</td>
</tr>
<tr>
<td>09</td>
<td>10</td>
<td>11</td>
<td>12</td>
<td><a href="#Recycle"><i class="fa fa-recycle fa-lg" aria-hidden="true"></i></a>
<div id="Recycle" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>Recycling Pickup</h2>
<h3>New Pick up Schedule</h3>
Recycling pick up for the Caldwell-Abbay Hall area is every other Thursday. Place your Green Cart on the curb by 7 am on the day of pick up.<br>
It is also weekly trash pickup day.
</div>
</div></td>
<td>14</td>
<td>15</td>
</tr>
<tr>
<td>16</td>
<td>17</td>
<td>18</td>
<td>19</td>
<td><a href="#newtrash"><i class="fa fa-trash-o fa-lg" aria-hidden="true"></i></a>
<div id="newtrash" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h3>Weekly Trash Pick up</h3>
Trash pick up for the Caldwell-Abbay Hall area is every Thursday. Place your Brown Cart on the curb by 7am on the day of pick up.
</div>
</div></td>
<td>21</td>
<td>22</td>
</tr>
<tr>
<td>23</td>
<td>24</td>
<td>25</td>
<td>26</td>
<td><a href="#Recycle"><i class="fa fa-recycle fa-lg" aria-hidden="true"></i></a>
<div id="Recycle" class="eventBox">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>Recycling Pickup</h2>
<h3>New Pick up Schedule</h3>
Recycling pick up for the Caldwell-Abbay Hall area is every other Thursday. Place your Green Cart on the curb by 7 am on the day of pick up.<br>
It is also weekly trash pickup day.
</div>
</div></td>
<td>28</td>
<td>29</td>
</tr>
<tr>
<td>30</td>
<td>31</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div></p>
</div>
<!-- END 2025 Mini calendar SECTION END END --->
<div class="row">
<div class="col-md-3 sidebar">
</div>
<div class="col-md-7">
<div class="img_body">
<img src="https://caldwell-abbayhall.com/images/sign-header.jpg" alt="Caldwell Abbay Hall Neighborhood brick and stone sign" height=95%, width=95%>
</div>
</div>
<div class="col-md-2"></div>
</div>
<div class="row">
<div class="col-md-3 sidebar quote">
<p>
<P>NEW LOCATION: Crieve Hall Church of Christ at 4806 Trousdale Drive.<br>
This is near Yogi's and Crieve Hall Bagel coffee shop<br>
Join in person at 10:00am. There will be coffee and goodies available at 9:30 am.
<ul>2024 dates are:
<li>Feb 03</li>
<li>April 20</li>
<li>July 27</li>
<li>October 19</li>
</ul>
</P>
</div>
<div class="col-md-7 watch">
<h2>Caldwell-Abbay Hall Calendar</h2>
<div class="welcome">
<h3>2023 Events.</h3>
<p>Oct 5 6-7PM * Community Meeting - Harding Place Improvements and Traffic Calming Blackman Rd.
Crievewood Baptist Church, Nashville, TN. <a href="
https://nextdoor.com/p/SRYj5x_zPtbT?utm_source=share&extras=MTM3OTE0MA%3D%3D">More on NextDoor</a><br>
<p>
September 30 10am * <b>Southminster Presbyterian Church meeting about their plans for the property on W Longdale and Harding.</b>
"We'll be hosting a neighborhood meeting at Southminster on September 30th to share project updates and hear our neighbors' questions." Pastor Beth Smith McCaw & the team at Southminster Presbyterian Church
</p>
<P><b>September 14 * Election Day and Trash Day.</b></P>
<P>August 25- Sept 9th * Early voting for Mayor and at large city council members</P>
<p>May 4 to September 28: Farmin in the Hall. Farmers market, Thursdays 4:30-7:00 451 Hogan Road, Crievewood UMC.</p>
Southminster Presbyterian Church presented their plans for the property on W Longdale and Harding. This is the first of many meeting about their plans. They plan to expand their Daycare, add a coffee shop, and build a 60 unit space of affordable housing.</p>
<p>The coffee shop would require rezoning for that building only. The other area would not need rezoning</p>
<p>Here is the <a href="https://docs.google.com/document/d/1pOJf059MV2ZMjE352Yl7EVY7P8J1l1zFIK4956w8iCw"> document they presented</a>. They handed a print out of this and it was on the QR code that was on screen during the slide show. Southminster has a form for questions or sign up for emails for their community updates and events, <a href="https://docs.google.com/forms/d/e/1FAIpQLSe6JCXqI-POyQwd8OfJMK6n6u5XSgrd4CIDAE4D0EFViSyMCg/viewform">Fill out the form here.</a> </p>
<p>July 15th 10am at Southminster Presbyterian Church.<br>Kelsey Oesmann from Urban Housing Solutions will be our first guest and she will help us better understand the affordable housing crisis in Nashville by playing The Game of Rent, which she created.<br>
Our next guest will be Rev. Beth McCaw, the pastor of Southminster Presbyterian Church, she will present the congregation's vision for what they are calling the Southminster Campus Development Plan. It includes expanded child care, after school programming/coffee shop, and affordable housing. There will be time for questions following.<br>
The meeting will conclude with brief reports from our local elected officials including Metro Council Rep Courtney Johnston, Others cancelled <strike>State House Rep Jason Powell, and Metro School Board Rep Freda Player.</strike>
</p>
<p>July 14-29 Early voting for Mayor, Vice Mayor, and Metro Council.</p>
<P>July 4th Holiday. Trash will be behind one day this week. Trash and recyling will be picked up on Friday July 7th.</P>
<P>June 16th Brush collection begins</P>
<p>June 10th 4:00 - 6:00pm Drinks in the Driveway</p>
<p>May 6th 11am-1pm. Neighborhood Picnic at Southminster Presbyterian Church. We will provide the hot dogs and hamburgers, if you bring the sides</p>
<P>April 15 On April 15th, we will hold our annual clean-up. We will gather at 9:30 at Southminster Presbyterian Church and have a brief meeting before heading out to pickup trash in the neighborhood. Metro Beautification will provide the supplies we need.</P>
<p>January: NEW: Starting the week of January 30th Recycling will be picked up every two weeks! Still on Thursday for our area. Just every other week. To get reminders use <a href="https://www.nashville.gov/departments/water/waste-and-recycling/recycling">Metro's Waste and Recycling app</a>.
For Februray Recycle dates are Feb 2 and 16. For March Recyle dates are March 2, 16, and 30.<br>
Pick up is no longer the first Thursday of the month. Change your calender, tell your neighbor.</br>
</p>
<P>January: There is a holiday on January 16. Trash Pickup will be moved to Friday the 20th.</P>
<p>CAHNA Meeting January 21 10am at Southminster Presbyterian Church. Join us in person at 10:00am. There will be coffee and goodies available at 9:30 am.</p>
</div>
<div class="welcome"><h3>2022 Events.</h3>
<P>November: There are two holidays in November. Nov 11th is Veterans Day, Nov 25th is Thanksgiving. These are both on Thursday, There will be no trash pickup on these days. Pickup will be moved to Friday the 12th and 26th.</P>
<p>September 22: Brush Pick up begins. The collection period runs for about 2 weeks but Metro will only make one pick up during this time. Next Collection will be in December 20. December pick up is before Christmas. So if you use a live tree after Christams take to a tree drop off site. Usually at William Whitfield near the Ag center.<br>
More Details on <a href="recycle.html#brsh"> Brush Collection.</a></p>
<p>June 22: Brush Pick up begins. The collection period runs for about 2 weeks but Metro will only make one pick up during this time. Next Collection will be in the fall.<br>
More Details on <a href="recycle.html#brsh"> Brush Collection.</a></p>
<p>June 4th 11:00 - 1:00 Neighborhood Picnic.<br>
CAHNA will provide the hot dogs and hamburgers. Please bring a side to share and something to drink if you want something other than water. Also bring a lawn chair to sit in. The picnic will be at Southminster Presbyterian Church at the corner of Harding and Danby. Enter the church parking lot off of W Longdale Drive. </p>
<p>May 21 Neighborhood Clean up day</p>
<p>In Person Meeting April 23 10am at Southminster Presbyterian Church. Join us in person at 10:00am. There will be coffee and goodies available at 9:30 am.</p>
<P>January 24 Brush collection begins. Delayed from Jan 10.</P>
Virtual Quarterly Meeting will January 15, 2022 at 10:00 am.
<p>On this day we will be holding our elections for officers for CAHNA.<b> We will be taking nominations for officers until January 15, 2022. And people can be nominated from the floor on the day of the election.</b>
<p>You must be a member of CAHNA to nominate or be nominated for a position. To become a member or continue your membership, go to our <a href="https://caldwell-abbayhall.com/">Home Page</a> and click the Pay Now link in the upper right-hand corner. It will take you to PayPal to complete your payment.</p>
<b>The Steering Committee is nominating:</b>
<ul><li> President: Doug Hausken</li>
<li>Vice President: Ellen Britton</li>
<li> Treasurer: Laura Pnewski</li>
<li>Secretary: Jacob Kraft</li>
</ul>
<p>Other Steering Committee members are Tricia Frantz (current President) and Mark McCaw.</p>
<P>We would love to have others join the Steering Committee. Please let us know if you are interested. It is a great way to see if you are interested in serving as an officer.</P>
</div>
<div class="welcome">
<h3>2021 Events</h3>
<h3>Recycling pickup postponed</h3>
<P>Recycling Pick up for the area has been put on hold till at least February. The Recycling trucks are helping the Trash pick up vendor that is behind. <a href="https://www.newschannel5.com/news/curbside-recycling-in-metro-nashville-temporarily-suspended">More Information</a></P>
<h3>Neighborhood Clean up</h3>
<p>Please join us this <b>Saturday, October 16th at 9:30 am</b> at Southminster Presbyterian Church. The church is at the corner of Danby and Harding Place. We will meet in the back parking lot off of West Longdale Drive. We will have coffee and snacks.</p>
<p>The cleanup will begin at 10 am and last until 11 am or so. We will provide garbage grabbers and garbage bags.</p>
<p>Please email us at <a href="mailto:[email protected]">Here</a> if you have questions.</p>
<h3>Covid-19 Vaccination Event</h3>
<p>Sept 18 2021 3-5PM. Southminster Presbyterian Church. More info and FAQs in the <a href="https://us17.campaign-archive.com/?u=37fff4dfb08727d98d4b85c15&id=c57c1a9793" target="blank" rel="noreferrer">CAHNA Newsletter</a></p>
<h3>Special Zoning Meeting Aug 18th 7:30PM</h3>
<p>Informational Meeting This Wednesday to Discuss an Amendment to the Southeast Community Plan
A very significant change to our neighborhood has been proposed for the area between Blackman and Elysian Fields along Trousdale Drive and on Harding from Trousdale east to Wauford Drive. This change would permanently affect the residential area of our neighborhood. The amendment is identified as 2021CP-012-002.</p>
<p>The Caldwell-Abbay Hall Neighborhood Association (CAHNA) Steering Committee learned about this proposed change to the Southeast Community Plan on August 10, 2021, from a neighbor in the affected area. The property owner for 444 Lynn Drive has requested this change.</p>
<p>Because this change affects our neighborhood and many more neighbors than just those in the proposed amendment area, CAHNA is hosting a virtual informational meeting on Wednesday, August 18, 2021, beginning promptly at 7:30 pm and ending promptly at 8:30 pm. We encourage everyone who can to attend this meeting. Again, this is an informational meeting.</p>
To join the Caldwell Abbay Hall informational meeting:<br>
Join Zoom Meeting<br>
https://zoom.us/j/95669624505<br>
Meeting ID: 956 6962 4505<br>
One tap mobile<br>
+13017158592,,95669624505# US (Washington DC)<br>
+13126266799,,95669624505# US (Chicago)<br>
<a href="https://mailchi.mp/0d0454aaad2d/informational-meeting"> More Information on our newsletter.</a><br>
Please attend<br>
<h3>Virtual Community Meeting Notice for Proposed
Southeast Community Plan Amendment</h3>
<h3>August 23 6-7PM</h3>
WHAT IS THE VIRTUAL COMMUNITY MEETING ABOUT? To discuss a request to amend the Southeast Community Plan,
by changing land use policy for various properties located along Trousdale Drive, from Blackman Rd northward to Elysian
Field Road and down Harding Place eastward to Wauford Drive. The plan amendment area is shown on the map on the
back of this notice.
<a href="https://www.nashville.gov/sites/default/files/2021-08/2021CP-012-002-Community-Meeting-Notice.pdf?ct=1628513551">More information</a>
<h3>March 2021 Flood Information</h3>
<Ol>Flood Recovery: <li>Where you can help. <a href="https://crcnashville.org/" target="blank" rel="noreferrer">Community Resource Center</a></li>
<li>Report Any Flood damage at <a href="https://maps.nashville.gov/NERVE/" target="blank" rel="noreferrer">NERVE</a></li>
</ol>
<ul>
<li>July 17th Cancelled CAHNA Quarterly Meeting</li>
<li>April News * Lower speed limit in the Neighborhood. The speed limit has been reduced to 25MPH.</li>
<li><img src="images/lower_speed_limit.jpg" alt="sign read speed limit 25" align="middle"></li>
<li>April 17th 10:00am CAHNA Virtual Meeting on facebook live.</li>
<li>
<p>Join us for our NEXT virtual quarterly meeting Saturday, January 16th, at 10am via Facebook Live. We will be joined by District 53 Tennessee State Representative Jason Powell, our District 26 Metro Councilwoman Courtney Johnston, District 7 School Board Representative Freda Player-Peters, and other community leaders.</p>
</li>
<li>January 16th 10:00am CAHNA Virtual Meeting on facebook live.</li>
<li>
<p>Join us for our NEXT virtual quarterly meeting Saturday, January 16th, at 10am via Facebook Live. We will be joined by District 53 Tennessee State Representative Jason Powell, our District 26 Metro Councilwoman Courtney Johnston, District 7 School Board Representative Freda Player-Peters, and other community leaders.</p>
<p>Our special focus topics will be, mental health awareness & how to get involved helping animals at Nashville Humane Association.</p>
<p>
Just go to our <a href="https://www.facebook.com/CaldwellAbbayHall"> Facebook page to join the meeting: </a><br>
You can submit questions there as well.</br></p>
</li>
</ul>
<img src="images/2021_meet.png" width="720px" height="auto">
</div>
</div>
<div class="col-md-2">
</div>
</div row>
<!-- END 2023 SECTION END END --->
<div class="row">
<div class="col-md-3 sidebar">
</div>
<div class="col-md-7">
<div class="img_body">
<img src="https://caldwell-abbayhall.com/images/zoo-banner-001.jpg">
</div>
</div>
<div class="col-md-2"></div>
</div>
<div class="row>">
<div class="col-md-3 sidebar quote">
<p class="quote">Caldwell-Abbay Hall means: Beautiful homes and active neighbors.</p>
<div class="sidebar quote">
<P>Our regular meetings are at the Southminister Presbyterian Church on Harding and Danby at 10:00am on the third Saturday of each new quarter. The meeting will be on Facebook for now.
</P>
</div>
</div>
<div class="col-md-7 watch">
<h3>2020 Events</h3>
<b>New Trash pick-up days</b> starting in November we go to Thursday trash pick up. Recycle on 1st Thursday. If Thursday is a holiday pickup is on Friday.<br><br>
<ul>
<li>December 18th. Brush collection begins. After this next collection will be in Spring 2021.</li>
<li>December 3 6:30. Special virtual meeting about illegal Drag Racing. Attend on Facebook CAHNA page.</li>
</ul>
<img src="images/halloweenParade.jpg" class="img_body" height="auto" width="720px">
<img src="images/carparade.png" class="img_body" height="auto" width="720px">
<br>
<UL>
<li>October 14-29 Early Voting</li>
<li>October 17th 10:00am CAHNA Virtual Meeting on facebook live.</li>
<li>October 31 2:00pm Halloween Car Parade from Croft Middle School to Southminster Presbyterian Church</li>
</UL>
<img src="images/school_supplies.png" class="img_body" height="auto" width="720px">
<p>July 18th 10:00 am CAHNA Virtual Meeting on facebook live.<br>
<p>May 2 9:30 AM CARE-a-VAN.<br>
<p>We're decorating our cars and driving the neighborhood this Saturday May 2nd to say hello and show we care! You can participate by joining our CARE-a-VAN and driving around with us, or you can step out into your yard and wave hello as we drive by! You can decorate your car with posters or banners or flowers or balloons...the sky's the limit. You can showcase your business too. Just make sure your decorations are appropriate for all ages. To join the our CARE-a-VAN by car assemble at Norman Binkley Elementary Parking lot at 9:30am.</p>
<div class="img_body">
<img src="images/car_a_van.png" height="393px" width="625px">
</div>
<p><br>Please join us for a Facebook Live event on <b>Wednesday, April 22nd, at 7 pm.</b> We are hosting Sgt. Hudson from the Midtown Precinct and Metro Councilwoman Courtney Johnston to discuss recent crime concerns in Caldwell Abbay Hall Neighborhood. Please submit your questions through Messenger.<br></p>
<p>Click here for our Facebook Page: <a href="https://www.facebook.com/CaldwellAbbayHall" target="blank" rel="noreferrer">CAHNA on Facebook.</a></p>
<p>Any neighborhood member that needs help to get groceries or supplies, please let us know. We will help facilitate assistance where possible. You can simply <a href="mailto:[email protected]">email here</a> or call Doug at 615-500-1869. </p>
<ul class="jan2018"> <div class="month_name">May</div>
<li>May 2 Block Party: Cancelled</li>
<li>May 2 Care-a-van</li>
</ul>
<ul class="jan2018"> <div class="month_name">April</div>
<li>CAHNA Meeting Cancelled</li>
<li>Office hours Cancelled</li>
</ul>
<ul class="jan2018"> <div class="month_name">February</div>
<li>Feb 08 • Zoo Run 1-5 at the Nashville Zoo.</li>
<li>Feb 17 • No School, No Mail, for Presidents Day</li>
<li>Feb 19 • Office Hours Black Abbey</li>
<li>Feb 24 • Traffic Public listening session.
<ol>
<li>The Mayor’s Office of Transportation will hold 11 public listening sessions in January and February of 2020. The listening sessions are your opportunity to voice ideas, priorities and concerns regarding transit and transportation in Nashville.</li>
<li><a href="https://www.nashville.gov/News-Media/Calendar-of-Events/Event-Details/ID/12293/begin/2-24-2020/NolensvilleSouth-Nashville-Public-Listening-Session.aspx" target="blank">More info and a survey here.</a></li>
<br><li>Feb 24 6-8 PM</li>
<li>Plaza Mariachi</li>
<li>3955 Nolensville Pike</li>
<li>Nashville, TN 3721</li>
</ol>
</li>
</ul>
<br><div class="img_body">
<img src ="../images/CAHNA_logo_full_color.jpg">
</div>
<h3>2019 Events</h3>
<ul class="jan2018"> <div class="month_name">July</div>
<li>July 17 • CAHNA Office Hours 6-8 PM at Black Abbey</li>
<li>July 20 • CAHNA Meeting • Meet with Metro Public Works about Traffic calming report.</li>
</ul>
<ul class="jan2018"> <div class="month_name">June</div>
<li>June 16 • CAHNA Sounds Game</li>
<li>June 19 • CAHNA Office Hours 6-8 PM at Black Abbey</li>
<li>June 21 • Brush Collection</li>
</ul>
<ul class="jan2018"> <div class="month_name">May</div>
<li>May 15 • CAHNA Office hours at Black Abbey Brewing 6-8PM</li>
<li>May - August • Thursdays 4:30 - 7:30 <a href="https://www.facebook.com/farmininthehall">Farmin in the Hall</a>. Crievewood United Methodist Church 451 Hogan Rd.</li></li>
</ul>
<ul class="jan2018"> <div class="month_name">April</div>
<li>April 20 • CAHNA Spring Clean-up</li>
<ul><li>The neighborhood is hosting a clean-up event in conjunction with our quarterly meeting on April 20th. We’ll begin the morning at Southminster Presbyterian Church at the corner of Harding and Danby. Coffee and donuts will be available at 9:30. After a few brief announcements and distribution of street assignments, we’ll head out into our neighborhood to pick up litter. Metro Beautification will provide gloves, trash bags, and grabbers. We’ll meet back at the church to return supplies. </li></ul>
<li>April 12 • Brief Power Outage as NES replaces meters.</li>
</ul>
<ul class="jan2018"> <div class="month_name">March</div>
<li>March 21 • Brush Collection</li>
<li>March 11-15 • Spring Break</li>
</ul>
<ul class="jan2018"> <div class="month_name">January</div>
<li>January 7 • Students return to school</li>
<li>Jan 16 • CAHNA Open Office Hours 6 PM-8 PM at Black Abbey Brewing</li>
<li>January 21 * Martin Luther King Jr Day • No class for Metro Students</li>
<li><B>NEW DATE & TIME</b> Jan 28 • CAHNA Meeting 6:30 PM</li>
<p>
<b>Important Date Change:</b>
We are postponing our regular quarterly meeting from Saturday, January 19, 2019 to Monday evening, January 28, 2019, at 6:30 pm. We will be meeting at Norman Binkley School.<br>
This change was necessary to accommodate Mayor Briley's schedule. As it turns out Governor Lee's inauguration falls on our Saturday meeting day and he was expected to be there. We believed this was a meeting worth accommodating for our neighbors in Caldwell Abbay Hall NA.<br>
Mayor Briley is interested in hearing from Nashville's residents about the budget. He would like input about what residents believe are important and want included in the budget.<br>
The mayor's staff will be taking notes as we share our thoughts about the budget and other concerns we may have regarding the city and city services.<br>
Please wear your CAHNA shirts if you have one. Let's show Mayor Briley our neighborhood pride!<br>
CAHNA will provide light snacks and drinks. Please RSVP on the Nextdoor calendar so we can have an idea of how much food to provide. <br>
I look forward to seeing everyone on Monday, January 28, 2019, at 6:30 pm at Norman Binkley Elementary School.
</br></p>
</ul>
<a href="https://static1.squarespace.com/static/57752cbed1758e541bdeef6b/t/5bcf798ef4e1fc68caf42b5a/1540323726486/MNPS_DistrictCalendar_2018-19_102318.pdf">2018-2019 Metro School Calendar</a> <p></p><BR><BR>
<div class="img_body">
<img src ="../images/CAHNA_logo_full_color.jpg">
</div>
<h3>2018 Events</h3>
<ul class="jan2018"> <div class="month_name">October</div>
<li>Oct 17 CAHNA Office Hours (6PM-8PM) at Black Abbey on Sidco</li>
<li>Oct 17 - Nov 1 * Early Voting</li>
<li>Oct 20 • CAHNA Meeting and Gratefull & Giving Potluck Breakfast. 9:30am
<ol>
<li>This month our meeeting will be held at Norman Binkley Not at Southminister</li>
<li>Please bring a dish to share</li>
<li>We are collecting sock and underwear for the students sizes (3yr - 11yr) .</li>
<li>We are also collecting ($10, $15, $20, etc) Wal-mart giftcards.</li>
</ol>
</li>
</ul>
<ul class="jan2018"> <div class="month_name">August</div>
<li>August 7 * First Day of School * Full day for grades 1-12, Half day for PK-K</li>
<li>August 2 * State Primary Election</li>
</ul>
<ul class="jan2018"> <div class="month_name">July</div>
<li>July 21 • CAHNA Meetting
<ul>
<li>9:30 am Coffee and Donuts</li>
<li>10:00 am Meeting begins</li>
<li>Guest speaker from the Mayor's Office of Neighborhoods and Community Engagement Topic: hubNashville</li>
</ul>
</li>
<li>July 13-28 * Early voting for State Primary Election</li>
</ul>
<ul class="jan2018"><div class="month_name">May</div>
<li>May - August • Thursdays 4:30 - 7:30 <a href="https://www.facebook.com/farmininthehall">Farmin in the Hall</a>. Crievewood United Methodist Church 451 Hogan Rd.</li>
<li>May 4 - 19 • Early Voting for Special Election for Mayor</li>
<li>May 19 • <a href="https://www.mgofdc.org/ugf" target="blank"> Urban Garden Festival</a> 9am- 4pm at Ellington Agricultural Center</li>
<li>May 24 • Special Election</li>
<li>May 24 • Last day of School</li>
</ul>
<ul class="jan2018"> <div class="month_name">April</div>
<li>April 18 • CAHNA Meetting</li>
<li>April 18 • Drinks in the Driveway</li>
</ul>
<ul class="jan2018"> <div class="month_name">January</div>
<li>Jan 3 • Davidson County Schools return to class</li>
<li>Jan 10 • <a href="https://www.mnps.org/" target="blank">School Choice Applictions open</a></li>
<li>Jan 15 • Martin Luther King Jr Day • No class for Metro Students</li>
<li class="cahnaBold">Jan 20 • CAHNA Meeting</li>
<li>Jan 27 • Zoo Run At Nashville Zoo 3pm-5pm</li>
</ul>
<!--p class="sidebar" -->
<!--</p> -->
</div>
</div>
<div class="col-md-2 calendar">
</div>
</div> <!-- row 2018-->
<div class="row">
<div class="col-md-3 sidebar">
</div>
<div class="col-md-7">
<div class="img_body"><br>
<img src="https://caldwell-abbayhall.com/images/site_header.jpg">
</div>
</div>
<div class="col-md-2"></div>
</div>
<div class="row">
<div class="col-md-3" >
<p class="quote">Caldwell-Abbay Hall means: Beautiful homes and active neighbors.</p>
<p class="blurb"><!--empty--></p>
<div class="sidebar quote">
<P>Our regular meetings are at the Southminister Presbyterian Church on Harding and Danby. At 10:00 am on the third Saturday of each new quarter.
<ul>2021 dates are:
<li>January 16</li>
<li>April 16</li>
<li>July 17: Cancelled.</li>
<li>October 16</li>
</ul>
</P>
</div>
</div>
<div class="col-md-7 watch">
<h2>Caldwell-Abbay Hall Calendar</h2>
<div class="welcome">
<h3>2017 Events</h3></P>
<ul class="Nov2017"> <div class="month_name">December</div>
<li> Dec 20 • Brush removal begins. Since Brush pick up is before Christmas there are options to keep the neighbor hood clean. </li>
<li><div class="img_body">
<img src ="images/TreeDropOff.jpg">
</div>
Dec 27 - Feb 16 • Metro Christmas tree drop off. You can drop your Christmas tree off at selected Metro parks. <a href="https://www.nashville.gov/News-Media/News-Article/ID/7061/Metro-Nashville-Christmas-Treecycling-Available-Again-For-2017.aspx" target="blank">Christmas tree drop off.</a> The nearest location to Caldwell Abbay Hall is Whitfield Park at 5101 Edmondson Pike, near the Library.
</li>
<li> Dec 31, Jan 1, or Jan 6 • Support Hillsboro High Band and have them pick up your Christmas Tree. <a href="https://www.burromusic.org/tree-pickup" target="blank"> Tree Pick-up</a>.