-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathwp.xml
7428 lines (7283 loc) · 386 KB
/
wp.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!-- on the site. For each author, you may choose to map to an -->
<!-- existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!-- contained in this file into your site. -->
<!-- generator="WordPress/4.1" created="2015-02-06 21:03" -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.2/"
>
<channel>
<title>phila.gov</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com</link>
<description>City of Philadelphia</description>
<pubDate>Fri, 06 Feb 2015 21:03:42 +0000</pubDate>
<language>en-US</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com</wp:base_site_url>
<wp:base_blog_url>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login>admin</wp:author_login><wp:author_email>webmaster@phila.gov</wp:author_email><wp:author_display_name><![CDATA[admin]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:category><wp:term_id>89</wp:term_id><wp:category_nicename>revenue</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Revenue]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>95</wp:term_id><wp:category_nicename>streets</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Streets]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>1</wp:term_id><wp:category_nicename>uncategorized</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>106</wp:term_id><wp:category_nicename>water</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Water]]></wp:cat_name></wp:category>
<wp:tag><wp:term_id>165</wp:term_id><wp:tag_slug>billing</wp:tag_slug><wp:tag_name><![CDATA[billing]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>167</wp:term_id><wp:tag_slug>pay</wp:tag_slug><wp:tag_name><![CDATA[pay]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>166</wp:term_id><wp:tag_slug>payment</wp:tag_slug><wp:tag_name><![CDATA[payment]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>171</wp:term_id><wp:tag_slug>revenue</wp:tag_slug><wp:tag_name><![CDATA[revenue]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>172</wp:term_id><wp:tag_slug>revenue-department</wp:tag_slug><wp:tag_name><![CDATA[revenue department]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>168</wp:term_id><wp:tag_slug>water</wp:tag_slug><wp:tag_name><![CDATA[water]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>169</wp:term_id><wp:tag_slug>water-department</wp:tag_slug><wp:tag_name><![CDATA[water department]]></wp:tag_name></wp:tag>
<wp:tag><wp:term_id>170</wp:term_id><wp:tag_slug>wrb</wp:tag_slug><wp:tag_name><![CDATA[wrb]]></wp:tag_name></wp:tag>
<wp:term><wp:term_id>111</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>business</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Business]]></wp:term_name><wp:term_description><![CDATA[ Starting a business, taxes, and payments
]]></wp:term_description></wp:term>
<wp:term><wp:term_id>37</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>health</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Health]]></wp:term_name><wp:term_description><![CDATA[ Health centers and food protection
]]></wp:term_description></wp:term>
<wp:term><wp:term_id>113</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>health-centers</wp:term_slug><wp:term_parent>health</wp:term_parent><wp:term_name><![CDATA[Health Centers]]></wp:term_name><wp:term_description><![CDATA[Providing medical care to Philadelphia residents in neighborhoods all across City.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>114</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>insurance</wp:term_slug><wp:term_parent>health</wp:term_parent><wp:term_name><![CDATA[Insurance]]></wp:term_name><wp:term_description><![CDATA[Resources for health insurance]]></wp:term_description></wp:term>
<wp:term><wp:term_id>184</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>jobs-and-contracts</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Jobs and Contracts]]></wp:term_name><wp:term_description><![CDATA[Job opportunities and professional contracts]]></wp:term_description></wp:term>
<wp:term><wp:term_id>115</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>lead</wp:term_slug><wp:term_parent>health</wp:term_parent><wp:term_name><![CDATA[Lead]]></wp:term_name><wp:term_description><![CDATA[Lead prevention, certification, and enforcement]]></wp:term_description></wp:term>
<wp:term><wp:term_id>174</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>legal</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Legal]]></wp:term_name><wp:term_description><![CDATA[Law, courts, and prisons]]></wp:term_description></wp:term>
<wp:term><wp:term_id>194</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>legal-payments</wp:term_slug><wp:term_parent>legal</wp:term_parent><wp:term_name><![CDATA[Make a Payment]]></wp:term_name><wp:term_description><![CDATA[Pay child support, court fees, etc.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>117</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>payments</wp:term_slug><wp:term_parent>business</wp:term_parent><wp:term_name><![CDATA[Payments]]></wp:term_name><wp:term_description><![CDATA[Print your most recent bill, pay online, pay by mail or pay by phone.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>129</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>payments-and-taxes</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Payments and Taxes]]></wp:term_name><wp:term_description><![CDATA[Taxes, bill payments, assessments, and violations]]></wp:term_description></wp:term>
<wp:term><wp:term_id>116</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>permits-licenses</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Permits and Licenses]]></wp:term_name><wp:term_description><![CDATA[Permit applications, license registration, appeals, and problems
]]></wp:term_description></wp:term>
<wp:term><wp:term_id>147</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>personal-taxes</wp:term_slug><wp:term_parent>payments-and-taxes</wp:term_parent><wp:term_name><![CDATA[Personal Taxes]]></wp:term_name><wp:term_description><![CDATA[Taxes that homeowners and residents must pay and file to the City]]></wp:term_description></wp:term>
<wp:term><wp:term_id>118</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>pests</wp:term_slug><wp:term_parent>health</wp:term_parent><wp:term_name><![CDATA[Pests]]></wp:term_name><wp:term_description><![CDATA[Removal, control and education.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>175</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>prison-inmate-support</wp:term_slug><wp:term_parent>legal</wp:term_parent><wp:term_name><![CDATA[Prisons and Inmate Support]]></wp:term_name><wp:term_description><![CDATA[Includes prison locations, visiting hours, and inmate support services.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>187</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>property</wp:term_slug><wp:term_parent>legal</wp:term_parent><wp:term_name><![CDATA[Property]]></wp:term_name><wp:term_description><![CDATA[Property-related laws and legal issues.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>119</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>property-housing</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Property and Housing]]></wp:term_name><wp:term_description><![CDATA[Assessments, taxes, rentals, and violations
]]></wp:term_description></wp:term>
<wp:term><wp:term_id>183</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>property-taxes</wp:term_slug><wp:term_parent>payments-and-taxes</wp:term_parent><wp:term_name><![CDATA[Property Taxes]]></wp:term_name><wp:term_description><![CDATA[Taxes on owned property.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>79</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>public-property</wp:term_slug><wp:term_parent>property-housing</wp:term_parent><wp:term_name><![CDATA[Public Property]]></wp:term_name><wp:term_description><![CDATA[City properties owned by the city government. ]]></wp:term_description></wp:term>
<wp:term><wp:term_id>120</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>public-safety</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Public Safety]]></wp:term_name><wp:term_description><![CDATA[Vehicle safety, emergencies, crime prevention and reporting, and victim assistance]]></wp:term_description></wp:term>
<wp:term><wp:term_id>121</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>recreation</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Recreation]]></wp:term_name><wp:term_description><![CDATA[ Parks, events, facilities, and programs]]></wp:term_description></wp:term>
<wp:term><wp:term_id>191</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>rec-centers</wp:term_slug><wp:term_parent>recreation</wp:term_parent><wp:term_name><![CDATA[Recreation Centers]]></wp:term_name><wp:term_description><![CDATA[Hours and locations of recreation facilities such as computer labs and older adult facilities.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>158</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>refunds</wp:term_slug><wp:term_parent>payments-and-taxes</wp:term_parent><wp:term_name><![CDATA[Refunds]]></wp:term_name><wp:term_description><![CDATA[Get refund petitions for refunds not requested on your tax return, water refunds, and refunds for other city claims.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>122</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>register-a-business</wp:term_slug><wp:term_parent>business</wp:term_parent><wp:term_name><![CDATA[Register a Business]]></wp:term_name><wp:term_description><![CDATA[Learn what you need to do to register your business in Philadelphia.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>130</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>rentals</wp:term_slug><wp:term_parent>property-housing</wp:term_parent><wp:term_name><![CDATA[Rentals]]></wp:term_name><wp:term_description><![CDATA[Documented rights and requirements for tenants and landlords in Philadelphia rental properties.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>123</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>report-a-problem</wp:term_slug><wp:term_parent>permits-licenses</wp:term_parent><wp:term_name><![CDATA[Report a Problem]]></wp:term_name><wp:term_description><![CDATA[Philly311 is a non-emergency Contact Center that is accessible to all residents, businesses and visitors.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>124</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>report-issue-public-safety</wp:term_slug><wp:term_parent>public-safety</wp:term_parent><wp:term_name><![CDATA[Report an Issue or Crime]]></wp:term_name><wp:term_description><![CDATA[Report a public safety issue or tip - If you are reporting a crime in progress, or require emergency service, please dial 9-1-1 Submit information regarding suspicious, nuisance and criminal activity to the Philadelphia Police Department.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>125</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>safety-training</wp:term_slug><wp:term_parent>public-safety</wp:term_parent><wp:term_name><![CDATA[Safety Training]]></wp:term_name><wp:term_description><![CDATA[Prevention and education on Safety related issues.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>126</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>sexual-health</wp:term_slug><wp:term_parent>health</wp:term_parent><wp:term_name><![CDATA[Sexual Health]]></wp:term_name><wp:term_description><![CDATA[Education, diagnosis and treatment of sexual transmitted diseases.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>192</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>sports-fields</wp:term_slug><wp:term_parent>recreation</wp:term_parent><wp:term_name><![CDATA[Sports Fields]]></wp:term_name><wp:term_description><![CDATA[Locations and hours of indoor and outdoor sports fields and courts.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>132</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>streets-and-utilities</wp:term_slug><wp:term_parent></wp:term_parent><wp:term_name><![CDATA[Streets and Utilities]]></wp:term_name><wp:term_description><![CDATA[Water, sanitation, parking, and transportation]]></wp:term_description></wp:term>
<wp:term><wp:term_id>195</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>crime-tip</wp:term_slug><wp:term_parent>legal</wp:term_parent><wp:term_name><![CDATA[Submit Crime Tip]]></wp:term_name><wp:term_description><![CDATA[If you are reporting a crime in progress, or require emergency service, please dial 9-1-1 Submit information regarding suspicious, nuisance and criminal activity to the Philadelphia Police Department.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>189</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>swimming-pools</wp:term_slug><wp:term_parent>recreation</wp:term_parent><wp:term_name><![CDATA[Swimming Pools]]></wp:term_name><wp:term_description><![CDATA[Hours, locations, and rules about indoor and outdoor swimming pools in the Philadelphia area.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>127</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>property-tax-info</wp:term_slug><wp:term_parent>property-housing</wp:term_parent><wp:term_name><![CDATA[Taxes]]></wp:term_name><wp:term_description><![CDATA[Tax balance owed to the City of Philadelphia for various collectable taxes.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>128</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>taxes</wp:term_slug><wp:term_parent>business</wp:term_parent><wp:term_name><![CDATA[Taxes]]></wp:term_name><wp:term_description><![CDATA[Information on the various taxes that apply to businesses and individuals in Philadelphia.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>156</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>transportation</wp:term_slug><wp:term_parent>streets-and-utilities</wp:term_parent><wp:term_name><![CDATA[Transportation]]></wp:term_name><wp:term_description><![CDATA[Transit services, including buses, trolleys, trackless trolleys, subways and Regional Rail]]></wp:term_description></wp:term>
<wp:term><wp:term_id>84</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>trash-and-recycling</wp:term_slug><wp:term_parent>streets-and-utilities</wp:term_parent><wp:term_name><![CDATA[Trash and Recycling]]></wp:term_name><wp:term_description><![CDATA[Sanitation schedules and rules.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>133</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>vacant-property</wp:term_slug><wp:term_parent>property-housing</wp:term_parent><wp:term_name><![CDATA[Vacant Property]]></wp:term_name><wp:term_description><![CDATA[Information on how to obtain a vacant property license, or pay a violation as well as find vacant property that is available.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>134</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>vehicle-accidents-violations</wp:term_slug><wp:term_parent>public-safety</wp:term_parent><wp:term_name><![CDATA[Vehicle Accidents and Violations]]></wp:term_name><wp:term_description><![CDATA[Information on parking tickets, red light and parking violations.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>135</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>victim-assistance</wp:term_slug><wp:term_parent>public-safety</wp:term_parent><wp:term_name><![CDATA[Victim Assistance]]></wp:term_name><wp:term_description><![CDATA[Programs that help victims and their families through the emotional and physical aftermath of an event or crime.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>136</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>violations</wp:term_slug><wp:term_parent>property-housing</wp:term_parent><wp:term_name><![CDATA[Violations]]></wp:term_name><wp:term_description><![CDATA[Information on SWEEP code and resident or commercial alarm system violations.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>106</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>water</wp:term_slug><wp:term_parent>streets-and-utilities</wp:term_parent><wp:term_name><![CDATA[Water]]></wp:term_name><wp:term_description><![CDATA[Providing safe water for residents to drink, supplying water for industries to manufacture goods, and protecting the region's water resources.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>155</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>youth-programs-activities</wp:term_slug><wp:term_parent>recreation</wp:term_parent><wp:term_name><![CDATA[Youth Programs and Activities]]></wp:term_name><wp:term_description><![CDATA[Camps, programs, and activities for children and young adults.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>137</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>zoning</wp:term_slug><wp:term_parent>property-housing</wp:term_parent><wp:term_name><![CDATA[Zoning]]></wp:term_name><wp:term_description><![CDATA[Regulates development within the City of Philadelphia.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>138</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>abatements-exemptions</wp:term_slug><wp:term_parent>property-housing</wp:term_parent><wp:term_name><![CDATA[Abatements & Exemptions]]></wp:term_name><wp:term_description><![CDATA[Programs that may reduce a property's Real Estate Tax bill. ]]></wp:term_description></wp:term>
<wp:term><wp:term_id>163</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>alarm-systems</wp:term_slug><wp:term_parent>public-safety</wp:term_parent><wp:term_name><![CDATA[Alarm Systems]]></wp:term_name><wp:term_description><![CDATA[Commercial or residential alarm system registration and fine information. ]]></wp:term_description></wp:term>
<wp:term><wp:term_id>139</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>appeals</wp:term_slug><wp:term_parent>permits-licenses</wp:term_parent><wp:term_name><![CDATA[Appeals]]></wp:term_name><wp:term_description><![CDATA[Various violations, refusals, revocations, and denials.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>140</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>assessments</wp:term_slug><wp:term_parent>property-housing</wp:term_parent><wp:term_name><![CDATA[Assessments]]></wp:term_name><wp:term_description><![CDATA[Determining the value of all real property in Philadelphia.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>141</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>business-taxes</wp:term_slug><wp:term_parent>payments-and-taxes</wp:term_parent><wp:term_name><![CDATA[Business Taxes]]></wp:term_name><wp:term_description><![CDATA[Information on the various taxes that can apply to businesses in Philadelphia.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>186</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>contracts</wp:term_slug><wp:term_parent>jobs-and-contracts</wp:term_parent><wp:term_name><![CDATA[Contracts]]></wp:term_name><wp:term_description><![CDATA[Professional contract opportunities with the City.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>151</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>courts</wp:term_slug><wp:term_parent>legal</wp:term_parent><wp:term_name><![CDATA[Court Cases]]></wp:term_name><wp:term_description><![CDATA[Information on civil and criminal court cases.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>179</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>crime-statistics-map</wp:term_slug><wp:term_parent>public-safety</wp:term_parent><wp:term_name><![CDATA[Crime Statistics and Maps]]></wp:term_name><wp:term_description><![CDATA[Philadelphia Crime statistics and reports by district and map.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>182</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>cycling</wp:term_slug><wp:term_parent>recreation</wp:term_parent><wp:term_name><![CDATA[Cycling]]></wp:term_name><wp:term_description><![CDATA[Bike share, rentals, lanes, and trails.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>27</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>emergency-services</wp:term_slug><wp:term_parent>public-safety</wp:term_parent><wp:term_name><![CDATA[Emergency Services]]></wp:term_name><wp:term_description><![CDATA[How to prepare, mitigate and recover from emergencies.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>164</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>environmental</wp:term_slug><wp:term_parent>health</wp:term_parent><wp:term_name><![CDATA[Environmental]]></wp:term_name><wp:term_description><![CDATA[Education and training, responding to emergencies, statutes, and issuing licenses and permits. ]]></wp:term_description></wp:term>
<wp:term><wp:term_id>142</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>events-and-schedules</wp:term_slug><wp:term_parent>recreation</wp:term_parent><wp:term_name><![CDATA[Events and Schedules]]></wp:term_name><wp:term_description><![CDATA[Indoor and outdoor functions, from food trucks to pop-up parks.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>145</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>food-protection</wp:term_slug><wp:term_parent>health</wp:term_parent><wp:term_name><![CDATA[Food Protection]]></wp:term_name><wp:term_description><![CDATA[Food protection regulations and best practices.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>178</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>housing-assistance</wp:term_slug><wp:term_parent>property-housing</wp:term_parent><wp:term_name><![CDATA[Housing Assistance]]></wp:term_name><wp:term_description><![CDATA[Emergency and financial housing assistance.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>143</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>ice-rinks</wp:term_slug><wp:term_parent>recreation</wp:term_parent><wp:term_name><![CDATA[Ice Rinks]]></wp:term_name><wp:term_description><![CDATA[Information about indoor and outdoor ice rink facilities in the Philadelphia area.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>185</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>jobs</wp:term_slug><wp:term_parent>jobs-and-contracts</wp:term_parent><wp:term_name><![CDATA[Jobs]]></wp:term_name><wp:term_description><![CDATA[Jobs with the City and related agencies.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>181</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>licenses</wp:term_slug><wp:term_parent>permits-licenses</wp:term_parent><wp:term_name><![CDATA[Licenses]]></wp:term_name><wp:term_description><![CDATA[Professionals, and their employers, are responsible for registering with the City of Philadelphia and obtaining permits to conduct business operations.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>177</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>maps-streets-utilities</wp:term_slug><wp:term_parent>streets-and-utilities</wp:term_parent><wp:term_name><![CDATA[Maps]]></wp:term_name><wp:term_description><![CDATA[This application allows you to view maps with data from City departments - from Bike Lanes to Road Closures.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>152</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>parking</wp:term_slug><wp:term_parent>streets-and-utilities</wp:term_parent><wp:term_name><![CDATA[Parking]]></wp:term_name><wp:term_description><![CDATA[Provides residents, businesses and visitors to Philadelphia with comprehensive parking services. ]]></wp:term_description></wp:term>
<wp:term><wp:term_id>190</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>parks</wp:term_slug><wp:term_parent>recreation</wp:term_parent><wp:term_name><![CDATA[Parks]]></wp:term_name><wp:term_description><![CDATA[Visit the various facilities from horse stables to pools, open seasonably and year round. There are hundreds of parks and recreation facilities, totaling over 10,000 acres.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>149</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>pay-a-bill</wp:term_slug><wp:term_parent>payments-and-taxes</wp:term_parent><wp:term_name><![CDATA[Pay a Bill]]></wp:term_name><wp:term_description><![CDATA[ Print your most recent bill, pay online, pay by mail or pay by phone.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>146</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>permits</wp:term_slug><wp:term_parent>permits-licenses</wp:term_parent><wp:term_name><![CDATA[Permits]]></wp:term_name><wp:term_description><![CDATA[Permits required before beginning a significant construction project.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>193</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>permits-and-codes</wp:term_slug><wp:term_parent>property-housing</wp:term_parent><wp:term_name><![CDATA[Permits and Codes]]></wp:term_name><wp:term_description><![CDATA[Construction permits and building codes]]></wp:term_description></wp:term>
<wp:term><wp:term_id>150</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>plan-an-event</wp:term_slug><wp:term_parent>recreation</wp:term_parent><wp:term_name><![CDATA[Plan an Event]]></wp:term_name><wp:term_description><![CDATA[Have a block party, reserve a shelter house, or rent a facility.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>154</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>preventative-youth-programs</wp:term_slug><wp:term_parent>public-safety</wp:term_parent><wp:term_name><![CDATA[Preventative Youth Programs]]></wp:term_name><wp:term_description><![CDATA[Prevention and protection programs available to aid the youth population in the City of Philadelphia.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>188</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>prison-inmate-support-public-safety</wp:term_slug><wp:term_parent>public-safety</wp:term_parent><wp:term_name><![CDATA[Prisons and Inmate Support]]></wp:term_name><wp:term_description><![CDATA[Includes prison locations, visiting hours, and inmate support services.]]></wp:term_description></wp:term>
<wp:term><wp:term_id>160</wp:term_id><wp:term_taxonomy>topics</wp:term_taxonomy><wp:term_slug>streets-sidewalks</wp:term_slug><wp:term_parent>streets-and-utilities</wp:term_parent><wp:term_name><![CDATA[Streets & Sidewalks]]></wp:term_name><wp:term_description><![CDATA[Permits, rates and information regarding Philadelphia street closures.]]></wp:term_description></wp:term>
<generator>http://wordpress.org/?v=4.1</generator>
<item>
<title>Philly311</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/311-2/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=1</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>1</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>311-2</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/311]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Philly311 is revolutionizing the way you get information from your City government. 311 is the only number you need to call when you need information or help from the City of Philadelphia.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Mayor's Commission on Services to the Aging</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/aging/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=2</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>2</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>aging</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/aging/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Improving the quality of life for older adults in Philadelphia. Opportunities and Services for Philadelphia Residents 55+. Our services are Free to Residents and Employers.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Philadelphia International Airport</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/airport/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=3</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>3</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>airport</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://phl.org]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Serving the entire Philadelphia region, the airport is easy to get to and has many programs to enhance the traveler's airport experience.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Anti-Graffiti Network</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/anti-graffiti/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=4</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>4</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>anti-graffiti</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/antigraffiti/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Coordinating efforts between city agencies, business organizations and community groups dedicated to the eradication of graffiti vandalism.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Office of Arts, Culture and Creative Economy</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/arts-culture-and-creative-economy/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=5</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>5</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>arts-culture-and-creative-economy</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://creativephl.org/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Focusing on supporting the City's thriving cultural and creative sector, and sharing stories of the people and products that drive its growth.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Mayor's Commission on Asian American Affairs</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/asian-american-affairs/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=6</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>6</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>asian-american-affairs</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/mcaaa/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Identifying issues important in the Asian American community, and collaborating with other organizations on common issues and making recommendations.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Department of Behavioral Health and Intellectual disAbility Services (DBHIDS)</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/behavioral-health-and-intellectual-disability-services/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=7</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>7</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>behavioral-health-and-intellectual-disability-services</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.dbhids.org/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Embracing a vision of recovery, resilience, and self-determination the department’s collaboration with the Philadelphia School District, child welfare and judicial systems, and other stakeholders guide people in managing their own conditions while building their own recovery resources. ]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>City Budget</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/budget/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=8</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>8</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>budget</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/citybudget]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Overseeing the plans and proposals pertaining to the City's spending and investing.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Cable TV - Channel 64</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/cable-tv/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=9</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>9</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>cable-tv</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/channel64]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Streaming live content from the City of Philadelphia.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Mayor's Office of Civic Engagement and Volunteer Service</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/civic-engagement-and-volunteer-service/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=10</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>10</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>civic-engagement-and-volunteer-service</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://volunteer.phila.gov/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Coordinating the implementation of SERVE Philadelphia, the City's blueprint for promoting service as a strategy to impact challenges and strengthen communities.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Civil Service Commission</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/civil-service/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=11</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>11</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>civil-service</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/personnel/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Advising the Mayor and the Director of Human Resources on problems concerning personnel administration in City service and upholding the interest of the City's merit-based civil service system, a role vital to the public interest.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Department of Commerce</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/commerce/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=12</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>12</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>commerce</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/commerce]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Leading efforts to develop business-friendly strategies to help both small businesses and major corporations in Philadelphia thrive.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>City Commissioners Office</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/commissioners/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=13</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>13</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>commissioners</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/commissioners]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Overseeing voter registration and elections for the City of Philadelphia.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Mayor's Office of Community Empowerment and Opportunity</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/community-empowerment-and-opportunity/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=14</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>14</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>community-empowerment-and-opportunity</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/mocs/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Working to combat poverty in our city, helping Philadelphia’s low-income residents realize economic security, by increasing opportunities for low income individuals and families.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>mayor-nutter-signs-bill</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/?attachment_id=436</link>
<pubDate>Fri, 19 Dec 2014 22:18:55 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://alphatemp-224460927.us-east-1.elb.amazonaws.com/wp-content/uploads/2014/12/mayor-nutter-signs-bill1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>436</wp:post_id>
<wp:post_date>2014-12-19 17:18:55</wp:post_date>
<wp:post_date_gmt>2014-12-19 22:18:55</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>mayor-nutter-signs-bill-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://s3.amazonaws.com/phila/2014/12/mayor-nutter-signs-bill1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2014/12/mayor-nutter-signs-bill1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>amazonS3_info</wp:meta_key>
<wp:meta_value><![CDATA[a:3:{s:6:"bucket";s:5:"phila";s:3:"key";s:36:"2014/12/mayor-nutter-signs-bill1.jpg";s:6:"region";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:4:{s:5:"width";i:250;s:6:"height";i:165;s:4:"file";s:36:"2014/12/mayor-nutter-signs-bill1.jpg";s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>pgw-sign</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/?attachment_id=437</link>
<pubDate>Fri, 19 Dec 2014 22:18:55 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://alphatemp-224460927.us-east-1.elb.amazonaws.com/wp-content/uploads/2014/12/pgw-sign1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>437</wp:post_id>
<wp:post_date>2014-12-19 17:18:55</wp:post_date>
<wp:post_date_gmt>2014-12-19 22:18:55</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>pgw-sign-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://s3.amazonaws.com/phila/2014/12/pgw-sign1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2014/12/pgw-sign1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>amazonS3_info</wp:meta_key>
<wp:meta_value><![CDATA[a:3:{s:6:"bucket";s:5:"phila";s:3:"key";s:21:"2014/12/pgw-sign1.jpg";s:6:"region";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:4:{s:5:"width";i:250;s:6:"height";i:165;s:4:"file";s:21:"2014/12/pgw-sign1.jpg";s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>snow</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/?attachment_id=438</link>
<pubDate>Fri, 19 Dec 2014 22:18:55 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://alphatemp-224460927.us-east-1.elb.amazonaws.com/wp-content/uploads/2014/12/snow1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>438</wp:post_id>
<wp:post_date>2014-12-19 17:18:55</wp:post_date>
<wp:post_date_gmt>2014-12-19 22:18:55</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>snow-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://s3.amazonaws.com/phila/2014/12/snow1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2014/12/snow1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>amazonS3_info</wp:meta_key>
<wp:meta_value><![CDATA[a:3:{s:6:"bucket";s:5:"phila";s:3:"key";s:17:"2014/12/snow1.jpg";s:6:"region";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:4:{s:5:"width";i:250;s:6:"height";i:165;s:4:"file";s:17:"2014/12/snow1.jpg";s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>creativephl</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/news/creative-phl-2014-report/creativephl/</link>
<pubDate>Mon, 22 Dec 2014 18:24:49 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://alphatemp-224460927.us-east-1.elb.amazonaws.com/wp-content/uploads/2014/12/creativephl.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>439</wp:post_id>
<wp:post_date>2014-12-22 13:24:49</wp:post_date>
<wp:post_date_gmt>2014-12-22 18:24:49</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>creativephl</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>440</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://s3.amazonaws.com/phila/2014/12/creativephl.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2014/12/creativephl.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>amazonS3_info</wp:meta_key>
<wp:meta_value><![CDATA[a:3:{s:6:"bucket";s:5:"phila";s:3:"key";s:23:"2014/12/creativephl.jpg";s:6:"region";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:4:{s:5:"width";i:250;s:6:"height";i:165;s:4:"file";s:23:"2014/12/creativephl.jpg";s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>PPD</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/?attachment_id=444</link>
<pubDate>Mon, 22 Dec 2014 19:02:22 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://alphatemp-224460927.us-east-1.elb.amazonaws.com/wp-content/uploads/2014/12/PPD.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>444</wp:post_id>
<wp:post_date>2014-12-22 14:02:22</wp:post_date>
<wp:post_date_gmt>2014-12-22 19:02:22</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>ppd</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://s3.amazonaws.com/phila/2014/12/PPD.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2014/12/PPD.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>amazonS3_info</wp:meta_key>
<wp:meta_value><![CDATA[a:3:{s:6:"bucket";s:5:"phila";s:3:"key";s:15:"2014/12/PPD.jpg";s:6:"region";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:4:{s:5:"width";i:250;s:6:"height";i:165;s:4:"file";s:15:"2014/12/PPD.jpg";s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>interships</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/?attachment_id=446</link>
<pubDate>Mon, 22 Dec 2014 19:14:09 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://alphatemp-224460927.us-east-1.elb.amazonaws.com/wp-content/uploads/2014/12/interships1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>446</wp:post_id>
<wp:post_date>2014-12-22 14:14:09</wp:post_date>
<wp:post_date_gmt>2014-12-22 19:14:09</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>interships-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>https://s3.amazonaws.com/phila/2014/12/interships1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2014/12/interships1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>amazonS3_info</wp:meta_key>
<wp:meta_value><![CDATA[a:3:{s:6:"bucket";s:5:"phila";s:3:"key";s:23:"2014/12/interships1.jpg";s:6:"region";s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:4:{s:5:"width";i:250;s:6:"height";i:165;s:4:"file";s:23:"2014/12/interships1.jpg";s:10:"image_meta";a:11:{s:8:"aperture";i:0;s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";i:0;s:9:"copyright";s:0:"";s:12:"focal_length";i:0;s:3:"iso";i:0;s:13:"shutter_speed";i:0;s:5:"title";s:0:"";s:11:"orientation";i:0;}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>City Controller</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/controller/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=15</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>15</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>controller</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.philadelphiacontroller.org/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Auditing and advising the municipal government on Pre-Audit, Post-Audit, Special and Fraud Investigations, Administration, Financial and Policy Analysis, Pension Affairs, Information Technology, and Legal Affairs. ]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>City Council</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/council/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=16</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>16</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>council</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/citycouncil/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Conducting hearings and public meetings on proposed bills and issues concerning The City of Philadelphia.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Philadelphia Courts</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/courts/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=17</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>17</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>courts</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.courts.phila.gov/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Housing the Court of Common Pleas; Municipal Court; and Traffic Court.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Defender Association of Philadelphia</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/defender/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=18</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>18</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>defender</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/defender/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Representing approximately seventy percent of all persons arrested in Philadelphia. The Association, however, has no power to appoint itself as legal counsel.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Delaware River Waterfront Corporation</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/delaware-river-waterfront-corporation/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=19</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>19</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>delaware-river-waterfront-corporation</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.delawareriverwaterfront.com/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Acting as the steward to design, develop and manage the central Delaware River waterfront in Philadelphia between Oregon and Allegheny Avenue to provide a benefit to all of the citizens and visitors of the City. ]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Office of the District Attorney</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/district-attorney/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=20</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>20</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>district-attorney</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://www.phila.gov/districtattorney/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Providing a voice for victims of crime and protects the community through zealous, ethical and effective investigations and prosecutions.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Office of Economic Opportunity</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/economic-opportunity/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=21</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>21</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>
<wp:post_date_gmt>2014-11-21 14:35:07</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>closed</wp:ping_status>
<wp:post_name>economic-opportunity</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>department_page</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="category" nicename="uncategorized"><![CDATA[Uncategorized]]></category>
<wp:postmeta>
<wp:meta_key>phila_dept_url</wp:meta_key>
<wp:meta_value><![CDATA[http://oeo.phila.gov/]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>phila_dept_desc</wp:meta_key>
<wp:meta_value><![CDATA[Working with Philadelphia business community to build internal and external alliances with Minority, Women or Disabled owned business enterprises to help develop strong, mutually beneficial relationships that facilitate successful networking opportunities.]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Mayor's Office of Education</title>
<link>http://philagov-staging-1019513781.us-east-1.elb.amazonaws.com/departments/education/</link>
<pubDate>Fri, 21 Nov 2014 14:35:07 +0000</pubDate>
<dc:creator><![CDATA[admin]]></dc:creator>
<guid isPermaLink="false">http://localhost:8080/?post_type=department_page&p=22</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>22</wp:post_id>
<wp:post_date>2014-11-21 14:35:07</wp:post_date>