forked from ornlabs/sinatrademo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpies.html
1511 lines (1496 loc) · 149 KB
/
pies.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" dir="ltr" class="client-nojs">
<head>
<meta charset="UTF-8" />
<title>List of pies, tarts and flans - Wikipedia, the free encyclopedia</title>
<meta name="generator" content="MediaWiki 1.24wmf5" />
<link rel="alternate" href="android-app://org.wikipedia/http/en.m.wikipedia.org/wiki/List_of_pies,_tarts_and_flans" />
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=List_of_pies,_tarts_and_flans&action=edit" />
<link rel="edit" title="Edit this page" href="/w/index.php?title=List_of_pies,_tarts_and_flans&action=edit" />
<link rel="apple-touch-icon" href="//bits.wikimedia.org/apple-touch/wikipedia.png" />
<link rel="shortcut icon" href="//bits.wikimedia.org/favicon/wikipedia.ico" />
<link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)" />
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd" />
<link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/" />
<link rel="alternate" type="application/atom+xml" title="Wikipedia Atom feed" href="/w/index.php?title=Special:RecentChanges&feed=atom" />
<link rel="canonical" href="http://en.wikipedia.org/wiki/List_of_pies,_tarts_and_flans" />
<link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=ext.gadget.DRN-wizard%2CReferenceTooltips%2Ccharinsert%2CrefToolbar%2Cteahouse%7Cext.rtlcite%2Cwikihiero%7Cext.uls.nojs%7Cext.visualEditor.viewPageTarget.noscript%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.skinning.interface%7Cmediawiki.ui.button%7Cskins.vector.styles%7Cwikibase.client.init&only=styles&skin=vector&*" />
<meta name="ResourceLoaderDynamicStyles" content="" />
<link rel="stylesheet" href="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=site&only=styles&skin=vector&*" />
<style>a:lang(ar),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}
/* cache key: enwiki:resourceloader:filter:minify-css:7:3904d24a08aa08f6a68dc338f9be277e */</style>
<script src="//bits.wikimedia.org/en.wikipedia.org/load.php?debug=false&lang=en&modules=startup&only=scripts&skin=vector&*"></script>
<script>if(window.mw){
mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"List_of_pies,_tarts_and_flans","wgTitle":"List of pies, tarts and flans","wgCurRevisionId":609266609,"wgRevisionId":609266609,"wgArticleId":21849645,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["All articles with dead external links","Articles with dead external links from March 2013","Articles needing additional references from March 2013","All articles needing additional references","Pies","Lists of foods"],"wgBreakFrames":false,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"List_of_pies,_tarts_and_flans","wgIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgWikiEditorEnabledModules":{"toolbar":true,"dialogs":true,"hidesig":true,"preview":false,"previewDialog":false,"publish":false},"wgBetaFeaturesFeatures":[],"wgMediaViewerOnClick":false,"wgVisualEditor":{"isPageWatched":false,"magnifyClipIconURL":"//bits.wikimedia.org/static-1.24wmf5/skins/common/images/magnify-clip.png","pageLanguageCode":"en","pageLanguageDir":"ltr","svgMaxSize":2048},"wikilove-recipient":"","wikilove-anon":0,"wgGuidedTourHelpGuiderUrl":"Help:Guided tours/guider","wgFlowTermsOfUseEdit":"By saving changes, you agree to our \u003Ca class=\"external text\" href=\"//wikimediafoundation.org/wiki/Terms_of_use\"\u003ETerms of Use\u003C/a\u003E and agree to irrevocably release your text under the \u003Ca rel=\"nofollow\" class=\"external text\" href=\"//creativecommons.org/licenses/by-sa/3.0\"\u003ECC BY-SA 3.0 License\u003C/a\u003E and \u003Ca class=\"external text\" href=\"//en.wikipedia.org/wiki/Wikipedia:Text_of_the_GNU_Free_Documentation_License\"\u003EGFDL\u003C/a\u003E","wgFlowTermsOfUseSummarize":"By clicking \"Summarize\", you agree to the terms of use for this wiki.","wgFlowTermsOfUseCloseTopic":"By clicking \"Close topic\", you agree to the terms of use for this wiki.","wgFlowTermsOfUseReopenTopic":"By clicking \"Reopen topic\", you agree to the terms of use for this wiki.","wgULSAcceptLanguageList":["en-us","en"],"wgULSCurrentAutonym":"English","wgFlaggedRevsParams":{"tags":{"status":{"levels":1,"quality":2,"pristine":3}}},"wgStableRevisionId":null,"wgCategoryTreePageCategoryOptions":"{\"mode\":0,\"hideprefix\":20,\"showcount\":true,\"namespaces\":false}","wgNoticeProject":"wikipedia","wgWikibaseItemId":"Q6633416"});
}</script><script>if(window.mw){
mw.loader.implement("user.options",function($,jQuery){mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"editfont":"default","editondblclick":0,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"imagesize":2,"math":0,"minordefault":0,"newpageshidepatrolled":0,"nickname":"","norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"rcdays":7,"rclimit":50,"rows":25,"showhiddencats":false,"shownumberswatching":1,"showtoolbar":1,"skin":"vector","stubthreshold":0,"thumbsize":4,"underline":2,"uselivepreview":0,"usenewrc":0,"watchcreations":1,"watchdefault":0,"watchdeletion":0,"watchlistdays":3,"watchlisthideanons":0,"watchlisthidebots":0,"watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,"wllimit":250,
"useeditwarning":1,"prefershttps":1,"flaggedrevssimpleui":1,"flaggedrevsstable":0,"flaggedrevseditdiffs":true,"flaggedrevsviewdiffs":false,"usebetatoolbar":1,"usebetatoolbar-cgd":1,"multimediaviewer-enable":true,"visualeditor-enable":0,"visualeditor-betatempdisable":0,"visualeditor-enable-experimental":0,"visualeditor-enable-language":0,"visualeditor-hidebetawelcome":0,"wikilove-enabled":1,"mathJax":false,"echo-subscriptions-web-page-review":true,"echo-subscriptions-email-page-review":false,"ep_showtoplink":false,"ep_bulkdelorgs":false,"ep_bulkdelcourses":true,"ep_showdyk":true,"echo-subscriptions-web-education-program":true,"echo-subscriptions-email-education-program":false,"echo-notify-show-link":true,"echo-show-alert":true,"echo-email-frequency":0,"echo-email-format":"html","echo-subscriptions-email-system":true,"echo-subscriptions-web-system":true,"echo-subscriptions-email-other":false,"echo-subscriptions-web-other":true,"echo-subscriptions-email-edit-user-talk":false,
"echo-subscriptions-web-edit-user-talk":true,"echo-subscriptions-email-reverted":false,"echo-subscriptions-web-reverted":true,"echo-subscriptions-email-article-linked":false,"echo-subscriptions-web-article-linked":false,"echo-subscriptions-email-mention":false,"echo-subscriptions-web-mention":true,"echo-subscriptions-web-edit-thank":true,"echo-subscriptions-email-edit-thank":false,"echo-subscriptions-web-flow-discussion":true,"echo-subscriptions-email-flow-discussion":false,"gettingstarted-task-toolbar-show-intro":true,"uls-preferences":"","language":"en","variant-gan":"gan","variant-iu":"iu","variant-kk":"kk","variant-ku":"ku","variant-shi":"shi","variant-sr":"sr","variant-tg":"tg","variant-uz":"uz","variant-zh":"zh","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":false,"searchNs9":false,"searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":
false,"searchNs15":false,"searchNs100":false,"searchNs101":false,"searchNs108":false,"searchNs109":false,"searchNs118":false,"searchNs119":false,"searchNs446":false,"searchNs447":false,"searchNs710":false,"searchNs711":false,"searchNs828":false,"searchNs829":false,"gadget-teahouse":1,"gadget-ReferenceTooltips":1,"gadget-DRN-wizard":1,"gadget-charinsert":1,"gadget-refToolbar":1,"gadget-mySandbox":1,"variant":"en"});},{},{});mw.loader.implement("user.tokens",function($,jQuery){mw.user.tokens.set({"editToken":"+\\","patrolToken":false,"watchToken":false});},{},{});
/* cache key: enwiki:resourceloader:filter:minify-js:7:369915ab579125627842c0da1e18ba20 */
}</script>
<script>if(window.mw){
mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","mediawiki.legacy.ajax","ext.centralauth.centralautologin","mmv.head","skins.vector.compactPersonalBar.defaultTracking","ext.visualEditor.viewPageTarget.init","ext.uls.init","ext.uls.interface","ext.centralNotice.bannerController","skins.vector.js"]);
}</script>
<link rel="dns-prefetch" href="//meta.wikimedia.org" /><!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/static-1.24wmf5/skins/vector/csshover.min.htc")}</style><![endif]--></head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-List_of_pies_tarts_and_flans skin-vector action-view vector-animateLayout">
<div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<div id="content" class="mw-body" role="main">
<a id="top"></a>
<div id="mw-js-message" style="display:none;"></div>
<div id="siteNotice"><!-- CentralNotice --></div>
<h1 id="firstHeading" class="firstHeading" lang="en"><span dir="auto">List of pies, tarts and flans</span></h1>
<div id="bodyContent" class="mw-body-content">
<div id="siteSub">From Wikipedia, the free encyclopedia</div>
<div id="contentSub"></div>
<div id="jump-to-nav" class="mw-jump">
Jump to: <a href="#mw-navigation">navigation</a>, <a href="#p-search">search</a>
</div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><table class="metadata plainlinks ambox ambox-content ambox-Refimprove" role="presentation">
<tr>
<td class="mbox-image">
<div style="width:52px;"><a href="/wiki/File:Question_book-new.svg" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/50px-Question_book-new.svg.png" width="50" height="39" srcset="//upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/75px-Question_book-new.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/9/99/Question_book-new.svg/100px-Question_book-new.svg.png 2x" data-file-width="262" data-file-height="204" /></a></div>
</td>
<td class="mbox-text"><span class="mbox-text-span">This article <b>needs additional citations for <a href="/wiki/Wikipedia:Verifiability" title="Wikipedia:Verifiability">verification</a></b>. <span class="hide-when-compact">Please help <a class="external text" href="//en.wikipedia.org/w/index.php?title=List_of_pies,_tarts_and_flans&action=edit">improve this article</a> by <a href="/wiki/Help:Introduction_to_referencing/1" title="Help:Introduction to referencing/1">adding citations to reliable sources</a>. Unsourced material may be challenged and removed.</span> <small><i>(March 2013)</i></small></span></td>
</tr>
</table>
<p>This is a <b>list of pies, tarts and flans</b>. A <a href="/wiki/Pie" title="Pie">pie</a> is a baked dish which is usually made of a <a href="/wiki/Pastry" title="Pastry">pastry</a> dough casing that covers or completely contains a filling of various <a href="/wiki/Sweetness" title="Sweetness">sweet</a> or <a href="/wiki/Umami" title="Umami">savoury</a> ingredients. A <a href="/wiki/Tart" title="Tart">tart</a> is a baked dish consisting of a filling over a <a href="/wiki/Pastry" title="Pastry">pastry</a> base with an open top not covered with pastry. The pastry is usually <a href="/wiki/Shortcrust_pastry" title="Shortcrust pastry">shortcrust pastry</a>; the filling may be sweet or savoury, though modern tarts are usually fruit-based, sometimes with <a href="/wiki/Custard" title="Custard">custard</a>. <a href="/wiki/Flan" title="Flan">Flan</a>, in Britain, is an open pastry or sponge case containing a sweet or savoury filling. A typical flan of this sort is round, with shortcrust pastry.</p>
<h2><span class="mw-headline" id="Pies.2C_tarts_and_flans">Pies, tarts and flans</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=List_of_pies,_tarts_and_flans&action=edit&section=1" title="Edit section: Pies, tarts and flans">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<table class="wikitable sortable" style="width:100%">
<tr>
<th>Name</th>
<th class="unsortable">Image</th>
<th>Origin</th>
<th>Type</th>
<th>Description</th>
</tr>
<tr>
<td><a href="/wiki/Aloo_pie" title="Aloo pie">Aloo pie</a></td>
<td><a href="/wiki/File:Aloo_Pie.jpg" class="image"><img alt="Aloo Pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/49/Aloo_Pie.jpg/123px-Aloo_Pie.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/49/Aloo_Pie.jpg/185px-Aloo_Pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/49/Aloo_Pie.jpg/246px-Aloo_Pie.jpg 2x" data-file-width="640" data-file-height="480" /></a></td>
<td><a href="/wiki/Trinidad_and_Tobago" title="Trinidad and Tobago">Trinidad and Tobago</a></td>
<td>savory</td>
<td>This soft and fried <a href="/wiki/Pastry" title="Pastry">pastry</a> is a variant of the <a href="/wiki/Samosa" title="Samosa">samosa</a>, made from flour and water, and filled with boiled, spiced and mashed <a href="/wiki/Potato" title="Potato">potatoes</a> and other vegetables like green peas. Its shape is similar to a <a href="/wiki/Calzone" title="Calzone">calzone</a>, and it is usually larger than a samosa, approximately 5 inches (13 cm) long.<sup id="cite_ref-1" class="reference"><a href="#cite_note-1"><span>[</span>1<span>]</span></a></sup></td>
</tr>
<tr>
<td><a href="/wiki/Apple_crisp" title="Apple crisp">Apple crisp</a><br />
<i>Apple crumble</i></td>
<td><a href="/wiki/File:Applecrisp.jpg" class="image"><img alt="Applecrisp.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c2/Applecrisp.jpg/123px-Applecrisp.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c2/Applecrisp.jpg/185px-Applecrisp.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c2/Applecrisp.jpg/246px-Applecrisp.jpg 2x" data-file-width="640" data-file-height="480" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>sweet</td>
<td>A dessert consisting of baked apples topped with a crispy crust. Many different kinds of fruit can substituted for apples, and one of the most common variants is 'apple rhubarb crisp' including <a href="/wiki/Rhubarb" title="Rhubarb">rhubarb</a>. It is an easy to make and tasty alternative to <a href="/wiki/Apple_pie" title="Apple pie">apple pie</a> and apple <a href="/wiki/Cobbler_(food)" title="Cobbler (food)">cobbler</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Apple_pie" title="Apple pie">Apple pie</a></td>
<td><a href="/wiki/File:Apple_pie.jpg" class="image"><img alt="Apple pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Apple_pie.jpg/123px-Apple_pie.jpg" width="123" height="84" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Apple_pie.jpg/185px-Apple_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Apple_pie.jpg/246px-Apple_pie.jpg 2x" data-file-width="2418" data-file-height="1657" /></a></td>
<td><a href="/wiki/Netherlands" title="Netherlands">Netherlands</a></td>
<td>sweet</td>
<td>A fruit pie (or <a href="/wiki/Tart" title="Tart">tart</a>) in which the principal filling ingredient is crisp and acidic <a href="/wiki/Cooking_apples" title="Cooking apples" class="mw-redirect">Cooking apples</a> such as the <a href="/wiki/Bramley_(apple)" title="Bramley (apple)" class="mw-redirect">Bramley</a> or <a href="/wiki/Granny_Smith" title="Granny Smith">Granny Smith</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Australian_and_New_Zealand_meat_pie" title="Australian and New Zealand meat pie" class="mw-redirect">Australian and New Zealand meat pie</a></td>
<td><a href="/wiki/File:Meat_pie.jpg" class="image"><img alt="Meat pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Meat_pie.jpg/123px-Meat_pie.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Meat_pie.jpg/185px-Meat_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Meat_pie.jpg/246px-Meat_pie.jpg 2x" data-file-width="1600" data-file-height="1067" /></a></td>
<td><a href="/wiki/Australia" title="Australia">Australia</a> and <a href="/wiki/New_Zealand" title="New Zealand">New Zealand</a><sup id="cite_ref-2" class="reference"><a href="#cite_note-2"><span>[</span>2<span>]</span></a></sup></td>
<td>savory</td>
<td>A hand-sized <a href="/wiki/Meat_pie" title="Meat pie">meat pie</a> containing largely <a href="/wiki/Ground_beef" title="Ground beef">minced meat</a> and <a href="/wiki/Gravy" title="Gravy">gravy</a> sometimes with onion and often consumed as a takeaway food snack. The pie itself is congruent with the <a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a>'s <a href="/wiki/Steak_pie" title="Steak pie">steak pie</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Bacon_and_egg_pie" title="Bacon and egg pie">Bacon and egg pie</a></td>
<td><a href="/wiki/File:Bacon%26egg_pie.jpg" class="image"><img alt="Bacon&egg pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Bacon%26egg_pie.jpg/123px-Bacon%26egg_pie.jpg" width="123" height="83" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Bacon%26egg_pie.jpg/185px-Bacon%26egg_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/Bacon%26egg_pie.jpg/246px-Bacon%26egg_pie.jpg 2x" data-file-width="3197" data-file-height="2145" /></a></td>
<td>Various</td>
<td>savory</td>
<td>A pie containing <a href="/wiki/Bacon" title="Bacon">bacon</a>, <a href="/wiki/Egg_(food)" title="Egg (food)">egg</a> and often <a href="/wiki/Onion" title="Onion">onion</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Bakewell_tart" title="Bakewell tart">Bakewell tart</a></td>
<td><a href="/wiki/File:BakewellCake.jpg" class="image"><img alt="BakewellCake.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/BakewellCake.jpg/123px-BakewellCake.jpg" width="123" height="88" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/BakewellCake.jpg/185px-BakewellCake.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fa/BakewellCake.jpg/246px-BakewellCake.jpg 2x" data-file-width="1108" data-file-height="792" /></a></td>
<td><a href="/wiki/Great_Britain" title="Great Britain">Great Britain</a></td>
<td>sweet</td>
<td>A tart with a <a href="/wiki/Shortcrust" title="Shortcrust" class="mw-redirect">shortcrust</a> pastry shell, spread with jam and filled with a sponge-like, ground almond filling.<sup id="cite_ref-Bakewell_3-0" class="reference"><a href="#cite_note-Bakewell-3"><span>[</span>3<span>]</span></a></sup> Often covered with nuts, such as almonds and peanuts, a top layer of almond flavoured icing, and a half glacé cherry.</td>
</tr>
<tr>
<td><a href="/wiki/Banana_Cream_Pie" title="Banana Cream Pie" class="mw-redirect">Banana Cream Pie</a></td>
<td><a href="/wiki/File:Banana_cream_pie_with_slice_removed,_July_2008.jpg" class="image"><img alt="Banana cream pie with slice removed, July 2008.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Banana_cream_pie_with_slice_removed%2C_July_2008.jpg/123px-Banana_cream_pie_with_slice_removed%2C_July_2008.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Banana_cream_pie_with_slice_removed%2C_July_2008.jpg/185px-Banana_cream_pie_with_slice_removed%2C_July_2008.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Banana_cream_pie_with_slice_removed%2C_July_2008.jpg/246px-Banana_cream_pie_with_slice_removed%2C_July_2008.jpg 2x" data-file-width="2048" data-file-height="1536" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>sweet</td>
<td>A cream pie made with a rich custard made from milk, cream, flour, and eggs and combined with sliced bananas in a pastry or graham crumb crust. It is often made with a <a href="/wiki/Whipped_cream" title="Whipped cream">whipped cream</a> topping.</td>
</tr>
<tr>
<td><a href="/wiki/Banoffee_pie" title="Banoffee pie">Banoffee pie</a></td>
<td><a href="/wiki/File:Banoffeepie.jpg" class="image"><img alt="Banoffeepie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Banoffeepie.jpg/123px-Banoffeepie.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Banoffeepie.jpg/185px-Banoffeepie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Banoffeepie.jpg/246px-Banoffeepie.jpg 2x" data-file-width="1024" data-file-height="768" /></a></td>
<td><a href="/wiki/Great_Britain" title="Great Britain">Great Britain</a></td>
<td>sweet</td>
<td>An English pastry-based dessert made from bananas,<sup id="cite_ref-Free_4-0" class="reference"><a href="#cite_note-Free-4"><span>[</span>4<span>]</span></a></sup> <a href="/wiki/Toffee" title="Toffee">toffee</a><sup id="cite_ref-Free_4-1" class="reference"><a href="#cite_note-Free-4"><span>[</span>4<span>]</span></a></sup> and <a href="/wiki/Cream" title="Cream">cream</a>, either on a pastry base or graham crumb crust.</td>
</tr>
<tr>
<td><a href="/wiki/Bean_pie" title="Bean pie">Bean pie</a></td>
<td><a href="/wiki/File:Bean_pie_recipe.jpg" class="image"><img alt="Bean pie recipe.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/50/Bean_pie_recipe.jpg/123px-Bean_pie_recipe.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/50/Bean_pie_recipe.jpg/185px-Bean_pie_recipe.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/50/Bean_pie_recipe.jpg/246px-Bean_pie_recipe.jpg 2x" data-file-width="1024" data-file-height="768" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>sweet</td>
<td>A sweet custard pie with a filling of mashed beans, sugar, butter, milk, and spices, including vanilla, cinnamon, and nutmeg.</td>
</tr>
<tr>
<td><a href="/wiki/Bedfordshire_clanger" title="Bedfordshire clanger">Bedfordshire clanger</a></td>
<td><a href="/wiki/File:Bedfordshire_Clanger.jpg" class="image"><img alt="Bedfordshire Clanger.jpg" src="//upload.wikimedia.org/wikipedia/en/thumb/2/2e/Bedfordshire_Clanger.jpg/123px-Bedfordshire_Clanger.jpg" width="123" height="99" srcset="//upload.wikimedia.org/wikipedia/en/thumb/2/2e/Bedfordshire_Clanger.jpg/185px-Bedfordshire_Clanger.jpg 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/2/2e/Bedfordshire_Clanger.jpg/246px-Bedfordshire_Clanger.jpg 2x" data-file-width="2056" data-file-height="1650" /></a></td>
<td><a href="/wiki/Bedfordshire" title="Bedfordshire">Bedfordshire</a>, <a href="/wiki/England" title="England">England</a>, UK</td>
<td>savory & sweet</td>
<td>An elongated, <a href="/wiki/Suet" title="Suet">suet</a> crust pie with a savory filling at one end (meat, potatoes and vegetables) and a sweet filling (Jam or fruit filled) at the other.</td>
</tr>
<tr>
<td><a href="/wiki/Bisteeya" title="Bisteeya" class="mw-redirect">Bisteeya</a></td>
<td><a href="/wiki/File:Bisteeya.jpg" class="image"><img alt="Bisteeya.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Bisteeya.jpg/123px-Bisteeya.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Bisteeya.jpg/185px-Bisteeya.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/ed/Bisteeya.jpg/246px-Bisteeya.jpg 2x" data-file-width="500" data-file-height="375" /></a></td>
<td><a href="/wiki/Morocco" title="Morocco">Morocco</a></td>
<td>savory</td>
<td>A chicken & almond <a href="/wiki/Filo" title="Filo">filo</a> pie</td>
</tr>
<tr>
<td><a href="/wiki/Black_bun" title="Black bun">Black bun</a></td>
<td><a href="/wiki/File:Black_bun_cut_open.jpg" class="image"><img alt="Black bun cut open.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Black_bun_cut_open.jpg/123px-Black_bun_cut_open.jpg" width="123" height="84" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Black_bun_cut_open.jpg/185px-Black_bun_cut_open.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Black_bun_cut_open.jpg/246px-Black_bun_cut_open.jpg 2x" data-file-width="2091" data-file-height="1434" /></a></td>
<td><a href="/wiki/Scotland" title="Scotland">Scotland</a></td>
<td>sweet</td>
<td>A pastry-covered fruitcake, traditionally eaten on Twelfth Night.</td>
</tr>
<tr>
<td><a href="/wiki/Blackberry_pie" title="Blackberry pie">Blackberry pie</a></td>
<td><a href="/wiki/File:Blackberry_pie_and_ice_cream,_2006.jpg" class="image"><img alt="Blackberry pie and ice cream, 2006.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/6/69/Blackberry_pie_and_ice_cream%2C_2006.jpg/123px-Blackberry_pie_and_ice_cream%2C_2006.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/69/Blackberry_pie_and_ice_cream%2C_2006.jpg/185px-Blackberry_pie_and_ice_cream%2C_2006.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/69/Blackberry_pie_and_ice_cream%2C_2006.jpg/246px-Blackberry_pie_and_ice_cream%2C_2006.jpg 2x" data-file-width="2816" data-file-height="2112" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>sweet</td>
<td>A fruit pie with a filling made from <a href="/wiki/Blackberry" title="Blackberry">blackberries</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Blueberry_pie" title="Blueberry pie">Blueberry pie</a></td>
<td><a href="/wiki/File:Best_Blueberry_Pie_with_Foolproof_Pie_Dough.jpg" class="image"><img alt="Best Blueberry Pie with Foolproof Pie Dough.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Best_Blueberry_Pie_with_Foolproof_Pie_Dough.jpg/123px-Best_Blueberry_Pie_with_Foolproof_Pie_Dough.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Best_Blueberry_Pie_with_Foolproof_Pie_Dough.jpg/185px-Best_Blueberry_Pie_with_Foolproof_Pie_Dough.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Best_Blueberry_Pie_with_Foolproof_Pie_Dough.jpg/246px-Best_Blueberry_Pie_with_Foolproof_Pie_Dough.jpg 2x" data-file-width="500" data-file-height="333" /></a></td>
<td><a href="/wiki/New_England" title="New England">New England</a>, <a href="/wiki/United_States" title="United States">United States</a></td>
<td>sweet</td>
<td>A fruit pie (or <a href="/wiki/Tart" title="Tart">tart</a>) in which the principal filling ingredient is <a href="/wiki/Blueberry" title="Blueberry">blueberries</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Bob_Andy_pie" title="Bob Andy pie">Bob Andy pie</a></td>
<td></td>
<td><a href="/wiki/United_States" title="United States">United States</a> (<a href="/wiki/Amish" title="Amish">Amish</a> Community)</td>
<td>sweet</td>
<td>A sweet custard pie, spiced with <a href="/wiki/Cinnamon" title="Cinnamon">cinnamon</a> and <a href="/wiki/Clove" title="Clove">cloves</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Bougatsa" title="Bougatsa">Bougatsa</a></td>
<td><a href="/wiki/File:Bougatsa.jpg" class="image"><img alt="Bougatsa.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Bougatsa.jpg/123px-Bougatsa.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Bougatsa.jpg/185px-Bougatsa.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Bougatsa.jpg/246px-Bougatsa.jpg 2x" data-file-width="2304" data-file-height="1728" /></a></td>
<td><a href="/wiki/Greece" title="Greece">Greece</a></td>
<td>sweet or savory</td>
<td>Consists of custard, cheese, or minced meat filling between layers of <a href="/wiki/Phyllo" title="Phyllo" class="mw-redirect">phyllo</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Boysenberry" title="Boysenberry">Boysenberry</a></td>
<td><a href="/wiki/File:Boysenberry_pie_01.jpg" class="image"><img alt="Boysenberry pie 01.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Boysenberry_pie_01.jpg/123px-Boysenberry_pie_01.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Boysenberry_pie_01.jpg/185px-Boysenberry_pie_01.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Boysenberry_pie_01.jpg/246px-Boysenberry_pie_01.jpg 2x" data-file-width="800" data-file-height="600" /></a></td>
<td><a href="/wiki/Northeastern_United_States" title="Northeastern United States">Northeastern United States</a></td>
<td>sweet</td>
<td>Made with <a href="/wiki/Boysenberry" title="Boysenberry">boysenberries</a>, often simmered into a softer sweeter "preserve"-type gel, most frequently with a second covering crust, either lattice or with only a few cutouts.</td>
</tr>
<tr>
<td><a href="/wiki/Bridie" title="Bridie">Bridie</a></td>
<td></td>
<td><a href="/wiki/Forfar,_Scotland" title="Forfar, Scotland" class="mw-redirect">Forfar, Scotland</a></td>
<td>savory</td>
<td>A small, savoury pie filled with minced steak, butter, and <a href="/wiki/Beef_suet" title="Beef suet" class="mw-redirect">beef suet</a> seasoned with salt and pepper. Sometimes with an addition of minced onions.</td>
</tr>
<tr>
<td><a href="/wiki/Buko_pie" title="Buko pie">Buko pie</a></td>
<td><a href="/wiki/File:Buko-pie.jpg" class="image"><img alt="Buko-pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Buko-pie.jpg/123px-Buko-pie.jpg" width="123" height="185" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Buko-pie.jpg/185px-Buko-pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0f/Buko-pie.jpg/246px-Buko-pie.jpg 2x" data-file-width="1000" data-file-height="1504" /></a></td>
<td><a href="/wiki/Philippines" title="Philippines">Philippines</a></td>
<td>sweet</td>
<td>A sweet pie originating from the Philippines. It was only available to the island country, until a method of freezing was used. It is a very popular pie, consisting of young coconuts.</td>
</tr>
<tr>
<td><a href="/wiki/Bumbleberry_pie" title="Bumbleberry pie">Bumbleberry pie</a></td>
<td><a href="/wiki/File:Slice_of_Bumbleberry_Pie.jpg" class="image"><img alt="Slice of Bumbleberry Pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/72/Slice_of_Bumbleberry_Pie.jpg/123px-Slice_of_Bumbleberry_Pie.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/72/Slice_of_Bumbleberry_Pie.jpg/185px-Slice_of_Bumbleberry_Pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/72/Slice_of_Bumbleberry_Pie.jpg/246px-Slice_of_Bumbleberry_Pie.jpg 2x" data-file-width="3264" data-file-height="2448" /></a></td>
<td><a href="/wiki/Canada" title="Canada">Canada</a>, has become popular in the <a href="/wiki/Midwestern_United_States" title="Midwestern United States">Midwestern United States</a></td>
<td>sweet</td>
<td>This is a sweet fruit pie in which the filling consists of blackberries, <a href="/wiki/Blueberry" title="Blueberry">blueberries</a>, <a href="/wiki/Raspberry" title="Raspberry">raspberries</a> and <a href="/wiki/Strawberry" title="Strawberry">strawberries</a>.<sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span>[</span>5<span>]</span></a></sup> Other varieties also include other berries or the addition of grapes. The color of the filling is a deep purple, and it is baked in a typical pie shell <a href="/w/index.php?title=Pate_sucre&action=edit&redlink=1" class="new" title="Pate sucre (page does not exist)">pate sucre</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Bundevara" title="Bundevara" class="mw-redirect">Bundevara</a></td>
<td></td>
<td><a href="/wiki/Serbia" title="Serbia">Serbia</a></td>
<td>sweet</td>
<td>An elongated, studel-like pie filled with sweetened <a href="/wiki/Pumpkin" title="Pumpkin">pumpkin</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Burek" title="Burek" class="mw-redirect">Burek</a></td>
<td><a href="/wiki/File:Bourekas.jpg" class="image"><img alt="Bourekas.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/17/Bourekas.jpg/123px-Bourekas.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/17/Bourekas.jpg/185px-Bourekas.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/17/Bourekas.jpg/246px-Bourekas.jpg 2x" data-file-width="1024" data-file-height="768" /></a></td>
<td><a href="/wiki/Mediterranean_Sea" title="Mediterranean Sea">Mediterranean Sea</a>, the <a href="/w/index.php?title=Slavic_Europe&action=edit&redlink=1" class="new" title="Slavic Europe (page does not exist)">Slavic</a> cuisines, throughout the <a href="/wiki/Balkans" title="Balkans">Balkans</a> and the former <a href="/wiki/Ottoman_Empire" title="Ottoman Empire">Ottoman Empire</a>.</td>
<td>savory</td>
<td><a href="/wiki/Phyllo" title="Phyllo" class="mw-redirect">Phyllo</a> filled with cheese, meat, potatoes and other vegetables.</td>
</tr>
<tr>
<td><a href="/wiki/Butter_pie" title="Butter pie">Butter pie</a></td>
<td></td>
<td><a href="/wiki/Lancashire" title="Lancashire">Lancashire</a>, <a href="/wiki/England" title="England">England</a>, UK</td>
<td>savory</td>
<td>Made with sliced potatoes, onion, butter, salt and pepper in a light pastry casing.</td>
</tr>
<tr>
<td><a href="/wiki/Butter_tart" title="Butter tart">Butter tart</a></td>
<td><a href="/wiki/File:Pecan_butter_tart,_May_2011.jpg" class="image"><img alt="Pecan butter tart, May 2011.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Pecan_butter_tart%2C_May_2011.jpg/123px-Pecan_butter_tart%2C_May_2011.jpg" width="123" height="123" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Pecan_butter_tart%2C_May_2011.jpg/185px-Pecan_butter_tart%2C_May_2011.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Pecan_butter_tart%2C_May_2011.jpg/246px-Pecan_butter_tart%2C_May_2011.jpg 2x" data-file-width="612" data-file-height="612" /></a></td>
<td><a href="/wiki/Canada" title="Canada">Canada</a></td>
<td>sweet</td>
<td>Butter, sugar and eggs in a pastry shell, with <a href="/wiki/Raisin" title="Raisin">raisins</a>, <a href="/wiki/Pecan" title="Pecan">pecans</a> or <a href="/wiki/Walnut" title="Walnut">walnuts</a> often added.</td>
</tr>
<tr>
<td><a href="/wiki/Buttermilk_pie" title="Buttermilk pie">Buttermilk pie</a></td>
<td><a href="/wiki/File:Buttermilk_Pie_with_Pecan_Brittle_at_Dyron%27s_Lowcountry.jpg" class="image"><img alt="Buttermilk Pie with Pecan Brittle at Dyron's Lowcountry.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/94/Buttermilk_Pie_with_Pecan_Brittle_at_Dyron%27s_Lowcountry.jpg/123px-Buttermilk_Pie_with_Pecan_Brittle_at_Dyron%27s_Lowcountry.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/94/Buttermilk_Pie_with_Pecan_Brittle_at_Dyron%27s_Lowcountry.jpg/185px-Buttermilk_Pie_with_Pecan_Brittle_at_Dyron%27s_Lowcountry.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/94/Buttermilk_Pie_with_Pecan_Brittle_at_Dyron%27s_Lowcountry.jpg/246px-Buttermilk_Pie_with_Pecan_Brittle_at_Dyron%27s_Lowcountry.jpg 2x" data-file-width="4288" data-file-height="2848" /></a></td>
<td><a href="/wiki/Southern_United_States" title="Southern United States">Southern United States</a></td>
<td>sweet</td>
<td>a traditional custard-like pie in a pastry crust with the filling a mixture of sugar, butter, eggs, <a href="/wiki/Buttermilk" title="Buttermilk">buttermilk</a> and flour.</td>
</tr>
<tr>
<td><a href="/wiki/Caramel_tart" title="Caramel tart">Caramel tart</a></td>
<td><a href="/wiki/File:Caramel_tart_at_The_Coffee_Roaster,_2007.jpg" class="image"><img alt="Caramel tart at The Coffee Roaster, 2007.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/18/Caramel_tart_at_The_Coffee_Roaster%2C_2007.jpg/123px-Caramel_tart_at_The_Coffee_Roaster%2C_2007.jpg" width="123" height="164" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/18/Caramel_tart_at_The_Coffee_Roaster%2C_2007.jpg/185px-Caramel_tart_at_The_Coffee_Roaster%2C_2007.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/18/Caramel_tart_at_The_Coffee_Roaster%2C_2007.jpg/246px-Caramel_tart_at_The_Coffee_Roaster%2C_2007.jpg 2x" data-file-width="1944" data-file-height="2592" /></a></td>
<td><a href="/wiki/Australia" title="Australia">Australia</a></td>
<td>sweet</td>
<td>A sweet tart, filled with soft piped <a href="/wiki/Caramel" title="Caramel">caramel</a>. Sometimes topped with whipped cream or drizzled with chocolate.</td>
</tr>
<tr>
<td><a href="/wiki/Cheesecake" title="Cheesecake">Cheesecake</a></td>
<td><a href="/wiki/File:K%C3%A4sekuchen.JPG" class="image"><img alt="Käsekuchen.JPG" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/f2/K%C3%A4sekuchen.JPG/120px-K%C3%A4sekuchen.JPG" width="120" height="90" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f2/K%C3%A4sekuchen.JPG/180px-K%C3%A4sekuchen.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f2/K%C3%A4sekuchen.JPG/240px-K%C3%A4sekuchen.JPG 2x" data-file-width="3072" data-file-height="2304" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>sweet</td>
<td><a href="/wiki/Cream_cheese" title="Cream cheese">Cream cheese</a> and <a href="/wiki/Pastry" title="Pastry">pastry</a>; may come in a variety of flavours.</td>
</tr>
<tr>
<td><a href="/wiki/Cheese_pie" title="Cheese pie" class="mw-redirect">Cheese pie</a></td>
<td><a href="/wiki/File:Strawberry_Cheese_Pie.jpg" class="image"><img alt="Strawberry Cheese Pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Strawberry_Cheese_Pie.jpg/123px-Strawberry_Cheese_Pie.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Strawberry_Cheese_Pie.jpg/185px-Strawberry_Cheese_Pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Strawberry_Cheese_Pie.jpg/246px-Strawberry_Cheese_Pie.jpg 2x" data-file-width="600" data-file-height="450" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>sweet</td>
<td>A pie with a filling similar to cheesecake with a graham wafer crust and often topped with fruit.</td>
</tr>
<tr>
<td><a href="/wiki/Cherry_pie" title="Cherry pie">Cherry pie</a></td>
<td><a href="/wiki/File:Twin_Peak%27s_Cherry_Pie_and_Coffee,_May_2009.jpg" class="image"><img alt="Twin Peak's Cherry Pie and Coffee, May 2009.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Twin_Peak%27s_Cherry_Pie_and_Coffee%2C_May_2009.jpg/123px-Twin_Peak%27s_Cherry_Pie_and_Coffee%2C_May_2009.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Twin_Peak%27s_Cherry_Pie_and_Coffee%2C_May_2009.jpg/185px-Twin_Peak%27s_Cherry_Pie_and_Coffee%2C_May_2009.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Twin_Peak%27s_Cherry_Pie_and_Coffee%2C_May_2009.jpg/246px-Twin_Peak%27s_Cherry_Pie_and_Coffee%2C_May_2009.jpg 2x" data-file-width="3648" data-file-height="2736" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>sweet</td>
<td>A pie baked with a cherry filling. Usually made with tart rather than sweet cherries so as to control the sweetness of the pie.</td>
</tr>
<tr>
<td><a href="/wiki/Chess_pie" title="Chess pie">Chess pie</a></td>
<td><a href="/wiki/File:Chess_pie.jpg" class="image"><img alt="Chess pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/29/Chess_pie.jpg/123px-Chess_pie.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/29/Chess_pie.jpg/185px-Chess_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/29/Chess_pie.jpg/246px-Chess_pie.jpg 2x" data-file-width="3008" data-file-height="2000" /></a></td>
<td><a href="/wiki/Great_Britain" title="Great Britain">Great Britain</a></td>
<td>sweet</td>
<td>A custard pie with a filling composed of eggs, butter, granulated sugar, brown sugar, vanilla and <a href="/wiki/Corn_meal" title="Corn meal" class="mw-redirect">corn meal</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Chicken_and_mushroom_pie" title="Chicken and mushroom pie">Chicken and mushroom pie</a></td>
<td><a href="/wiki/File:Chicken_Pie.JPG" class="image"><img alt="Chicken Pie.JPG" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Chicken_Pie.JPG/123px-Chicken_Pie.JPG" width="123" height="93" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Chicken_Pie.JPG/185px-Chicken_Pie.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Chicken_Pie.JPG/246px-Chicken_Pie.JPG 2x" data-file-width="701" data-file-height="528" /></a></td>
<td><a href="/wiki/Great_Britain" title="Great Britain">Great Britain</a></td>
<td>savory</td>
<td>A pie made with a pastry crust with a filling of small pieces of chicken and sliced mushrooms in a creamy sauce.</td>
</tr>
<tr>
<td><a href="/wiki/Chinese_pie" title="Chinese pie" class="mw-redirect">Chinese pie</a><br />
<i>Pâté chinois</i></td>
<td><a href="/wiki/File:P%C3%A2t%C3%A9_chinois.jpg" class="image"><img alt="Pâté chinois.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/75/P%C3%A2t%C3%A9_chinois.jpg/123px-P%C3%A2t%C3%A9_chinois.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/75/P%C3%A2t%C3%A9_chinois.jpg/185px-P%C3%A2t%C3%A9_chinois.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/75/P%C3%A2t%C3%A9_chinois.jpg/246px-P%C3%A2t%C3%A9_chinois.jpg 2x" data-file-width="3888" data-file-height="2592" /></a></td>
<td><a href="/wiki/Quebec" title="Quebec">Quebec</a>, <a href="/wiki/Canada" title="Canada">Canada</a></td>
<td>savory</td>
<td>A layered French Canadian dish similar to English cottage pie. It is made with ground beef an <a href="/wiki/Saut%C3%A9e" title="Sautée" class="mw-redirect">sautéed</a> onions on the bottom layer, canned corn (whole-kernel or creamed) for the middle layer, and mashed potatoes on top.</td>
</tr>
<tr>
<td><a href="/wiki/Coconut_cream_pie" title="Coconut cream pie" class="mw-redirect">Coconut Cream Pie</a></td>
<td><a href="/wiki/File:Coconut_cream_pie.jpg" class="image"><img alt="Coconut cream pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/84/Coconut_cream_pie.jpg/123px-Coconut_cream_pie.jpg" width="123" height="98" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/84/Coconut_cream_pie.jpg/185px-Coconut_cream_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/84/Coconut_cream_pie.jpg/246px-Coconut_cream_pie.jpg 2x" data-file-width="2384" data-file-height="1908" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>sweet</td>
<td>A cream pie made with a rich custard made from milk, cream, flour, eggs, and shredded <a href="/wiki/Coconut" title="Coconut">coconut</a> in a pastry or graham crumb crust. It is usually topped with a whipped cream and toasted coconut.</td>
</tr>
<tr>
<td><a href="/wiki/Cookie_Cake_Pie" title="Cookie Cake Pie">Cookie Cake Pie</a></td>
<td></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>A combination of cookie dough and cake batter baked together in a pie crust.</td>
</tr>
<tr>
<td><a href="/wiki/Corned_beef_pie" title="Corned beef pie">Corned beef pie</a></td>
<td><a href="/wiki/File:Corned_beef_pie.jpg" class="image"><img alt="Corned beef pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Corned_beef_pie.jpg/123px-Corned_beef_pie.jpg" width="123" height="90" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Corned_beef_pie.jpg/185px-Corned_beef_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2a/Corned_beef_pie.jpg/246px-Corned_beef_pie.jpg 2x" data-file-width="800" data-file-height="587" /></a></td>
<td><a href="/wiki/Great_Britain" title="Great Britain">Great Britain</a></td>
<td>savory</td>
<td>A pie with a filling of corned beef, onion and other vegetables such as corn, peas or carrot. The pie can be made with a <a href="/wiki/Mashed_potato" title="Mashed potato">mashed potato</a> topping, as in cottage pie, or with a traditional pastry crust.</td>
</tr>
<tr>
<td><a href="/wiki/Cottage_pie" title="Cottage pie">Cottage pie</a><br />
<i>Shepherd's pie</i></td>
<td><a href="/wiki/File:Shepherdspie2.JPG" class="image"><img alt="Shepherdspie2.JPG" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Shepherdspie2.JPG/123px-Shepherdspie2.JPG" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Shepherdspie2.JPG/185px-Shepherdspie2.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/59/Shepherdspie2.JPG/246px-Shepherdspie2.JPG 2x" data-file-width="540" data-file-height="361" /></a></td>
<td><a href="/wiki/Great_Britain" title="Great Britain">Great Britain</a>, <a href="/wiki/Canada" title="Canada">Canada</a></td>
<td>savory</td>
<td>A meat pie with a crust of mashed potato.</td>
</tr>
<tr>
<td><a href="/wiki/Coulibiac" title="Coulibiac">Coulibiac</a></td>
<td><a href="/wiki/File:Russian_Coulibiac_with_Cabbage.jpg" class="image"><img alt="Russian Coulibiac with Cabbage.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/22/Russian_Coulibiac_with_Cabbage.jpg/123px-Russian_Coulibiac_with_Cabbage.jpg" width="123" height="88" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/22/Russian_Coulibiac_with_Cabbage.jpg/185px-Russian_Coulibiac_with_Cabbage.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/22/Russian_Coulibiac_with_Cabbage.jpg/246px-Russian_Coulibiac_with_Cabbage.jpg 2x" data-file-width="3167" data-file-height="2273" /></a></td>
<td><a href="/wiki/Russia" title="Russia">Russia</a></td>
<td>savory</td>
<td>A baked pie with a filling made with <a href="/wiki/Salmon" title="Salmon">salmon</a> or <a href="/wiki/Sturgeon" title="Sturgeon">sturgeon</a>,<sup id="cite_ref-6" class="reference"><a href="#cite_note-6"><span>[</span>6<span>]</span></a></sup> rice, hard-boiled eggs, mushrooms, and <a href="/wiki/Dill" title="Dill">dill</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Cumberland_pie" title="Cumberland pie" class="mw-redirect">Cumberland pie</a></td>
<td></td>
<td><a href="/wiki/Great_Britain" title="Great Britain">Great Britain</a></td>
<td>savory</td>
<td>A meat pie topped with a crust of bread crumbs.</td>
</tr>
<tr>
<td><a href="/wiki/Curry_pie" title="Curry pie">Curry pie</a></td>
<td><a href="/wiki/File:ChickenpotpiesopenFeb09.jpg" class="image"><img alt="ChickenpotpiesopenFeb09.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/ChickenpotpiesopenFeb09.jpg/123px-ChickenpotpiesopenFeb09.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/51/ChickenpotpiesopenFeb09.jpg/185px-ChickenpotpiesopenFeb09.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/51/ChickenpotpiesopenFeb09.jpg/246px-ChickenpotpiesopenFeb09.jpg 2x" data-file-width="2048" data-file-height="1536" /></a></td>
<td><a href="/wiki/Great_Britain" title="Great Britain">Great Britain</a></td>
<td>savory</td>
<td>A pie with a pastry crust filled with Indian or Chinese curry.</td>
</tr>
<tr>
<td><a href="/wiki/Curry_puff" title="Curry puff">Curry puff</a></td>
<td><a href="/wiki/File:Bite_of_Curry_Puff.jpg" class="image"><img alt="Bite of Curry Puff.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Bite_of_Curry_Puff.jpg/123px-Bite_of_Curry_Puff.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Bite_of_Curry_Puff.jpg/185px-Bite_of_Curry_Puff.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Bite_of_Curry_Puff.jpg/246px-Bite_of_Curry_Puff.jpg 2x" data-file-width="1280" data-file-height="960" /></a></td>
<td><a href="/wiki/Malaysia" title="Malaysia">Malaysia</a>, <a href="/wiki/Singapore" title="Singapore">Singapore</a>, <a href="/wiki/Thailand" title="Thailand">Thailand</a></td>
<td>savory</td>
<td>A small pie consisting of curry with chicken and potatoes in a deep-fried or baked pastry shell, similar to an <a href="/wiki/Empanada" title="Empanada">Empanada</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Custard_tart" title="Custard tart">Custard tart</a></td>
<td><a href="/wiki/File:Egg_custard_tart.jpg" class="image"><img alt="Egg custard tart.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Egg_custard_tart.jpg/123px-Egg_custard_tart.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Egg_custard_tart.jpg/185px-Egg_custard_tart.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Egg_custard_tart.jpg/246px-Egg_custard_tart.jpg 2x" data-file-width="971" data-file-height="728" /></a></td>
<td><a href="/wiki/France" title="France">France</a>, <a href="/wiki/Great_Britain" title="Great Britain">Great Britain</a></td>
<td>sweet</td>
<td>A baked pastry consisting of an pastry crust filled with <a href="/wiki/Egg_custard" title="Egg custard" class="mw-redirect">egg custard</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Derby_pie" title="Derby pie">Derby pie</a></td>
<td><a href="/wiki/File:Kentucky_Chocolate_walnut_pie_slice.JPG" class="image"><img alt="Kentucky Chocolate walnut pie slice.JPG" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Kentucky_Chocolate_walnut_pie_slice.JPG/123px-Kentucky_Chocolate_walnut_pie_slice.JPG" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Kentucky_Chocolate_walnut_pie_slice.JPG/185px-Kentucky_Chocolate_walnut_pie_slice.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Kentucky_Chocolate_walnut_pie_slice.JPG/246px-Kentucky_Chocolate_walnut_pie_slice.JPG 2x" data-file-width="3072" data-file-height="2304" /></a></td>
<td><a href="/wiki/Kentucky" title="Kentucky">Kentucky</a>, <a href="/wiki/United_States" title="United States">United States</a></td>
<td>sweet</td>
<td>A chocolate and walnut pie with a pastry dough crust. Commonly made with pecans, chocolate chips and Kentucky <a href="/wiki/Bourbon_whiskey" title="Bourbon whiskey">bourbon</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Egg_tart" title="Egg tart">Egg tart</a></td>
<td><a href="/wiki/File:Egg_custard_tarts.jpg" class="image"><img alt="Egg custard tarts.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/00/Egg_custard_tarts.jpg/123px-Egg_custard_tarts.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/00/Egg_custard_tarts.jpg/185px-Egg_custard_tarts.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/00/Egg_custard_tarts.jpg/246px-Egg_custard_tarts.jpg 2x" data-file-width="2560" data-file-height="1920" /></a></td>
<td><a href="/wiki/Hong_Kong" title="Hong Kong">Hong Kong</a><sup id="cite_ref-scmp-1_7-0" class="reference"><a href="#cite_note-scmp-1-7"><span>[</span>7<span>]</span></a></sup></td>
<td>sweet</td>
<td>A baked pastry consisting of egg custard in a cookie crust or puff crust.</td>
</tr>
<tr>
<td><a href="/wiki/Empanada" title="Empanada">Empanada</a></td>
<td><a href="/wiki/File:Empanada_-_Stu_Spivack.jpg" class="image"><img alt="Empanada - Stu Spivack.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/97/Empanada_-_Stu_Spivack.jpg/123px-Empanada_-_Stu_Spivack.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/97/Empanada_-_Stu_Spivack.jpg/185px-Empanada_-_Stu_Spivack.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/97/Empanada_-_Stu_Spivack.jpg/246px-Empanada_-_Stu_Spivack.jpg 2x" data-file-width="3008" data-file-height="2000" /></a></td>
<td>Popular throughout: <a href="/wiki/Spain" title="Spain">Spain</a>, <a href="/wiki/Portugal" title="Portugal">Portugal</a>, <a href="/wiki/Latin_America" title="Latin America">Latin America</a>, <a href="/wiki/Central_America" title="Central America">Central America</a>, <a href="/wiki/The_Philippines" title="The Philippines" class="mw-redirect">The Philippines</a>, <a href="/wiki/Indonesia" title="Indonesia">Indonesia</a>, <a href="/wiki/Malaysia" title="Malaysia">Malaysia</a>, <a href="/wiki/Caribbean" title="Caribbean">Caribbean</a></td>
<td>sweet and savory</td>
<td>A stuffed pastry, baked or fried and stuffed with a variety of fillings, including meat, cheese, vegetables or fruit.</td>
</tr>
<tr>
<td><a href="/wiki/Fish_pie" title="Fish pie">Fish pie</a><br />
<i>Fisherman's Pie</i></td>
<td><a href="/wiki/File:Fish_Pie.jpg" class="image"><img alt="Fish Pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Fish_Pie.jpg/123px-Fish_Pie.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Fish_Pie.jpg/185px-Fish_Pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/6b/Fish_Pie.jpg/246px-Fish_Pie.jpg 2x" data-file-width="1024" data-file-height="768" /></a></td>
<td><a href="/wiki/Great_Britain" title="Great Britain">Great Britain</a></td>
<td>savory</td>
<td>A dish made with white fish in a béchamel sauce with a mashed potato topping, similar to cottage pie.</td>
</tr>
<tr>
<td><a href="/wiki/Flan" title="Flan">Flan</a></td>
<td></td>
<td></td>
<td>sweet and savory</td>
<td>An open pastry or sponge cake containing a sweet or savoury filling</td>
</tr>
<tr>
<td><a href="/wiki/Flapper_pie" title="Flapper pie">Flapper pie</a></td>
<td></td>
<td><a href="/wiki/Western_Canada" title="Western Canada">Western Canada</a></td>
<td>sweet</td>
<td>A custard pie with a graham wafer crust, topped with <a href="/wiki/Meringue" title="Meringue">meringue</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Fleischkuekle" title="Fleischkuekle">Fleischkuekle</a></td>
<td></td>
<td><a href="/wiki/Russia" title="Russia">Russia</a>, <a href="/wiki/Germany" title="Germany">Germany</a>, <a href="/wiki/North_Dakota" title="North Dakota">North Dakota</a>, United States</td>
<td>savory</td>
<td>A fried meat pie made with flat bread.</td>
</tr>
<tr>
<td><a href="/wiki/Fried_pie" title="Fried pie">Fried pie</a></td>
<td><a href="/wiki/File:HK_product_McDonalds_%E8%98%8B%E6%9E%9C%E6%89%B9_Apple_Pie_Dec-2011.jpg" class="image"><img alt="HK product McDonalds 蘋果批 Apple Pie Dec-2011.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/HK_product_McDonalds_%E8%98%8B%E6%9E%9C%E6%89%B9_Apple_Pie_Dec-2011.jpg/123px-HK_product_McDonalds_%E8%98%8B%E6%9E%9C%E6%89%B9_Apple_Pie_Dec-2011.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/HK_product_McDonalds_%E8%98%8B%E6%9E%9C%E6%89%B9_Apple_Pie_Dec-2011.jpg/185px-HK_product_McDonalds_%E8%98%8B%E6%9E%9C%E6%89%B9_Apple_Pie_Dec-2011.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fa/HK_product_McDonalds_%E8%98%8B%E6%9E%9C%E6%89%B9_Apple_Pie_Dec-2011.jpg/246px-HK_product_McDonalds_%E8%98%8B%E6%9E%9C%E6%89%B9_Apple_Pie_Dec-2011.jpg 2x" data-file-width="2592" data-file-height="1936" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>sweet</td>
<td>A small, fried pastry crust pie containing a fruit filling.</td>
</tr>
<tr>
<td><a href="/wiki/Gibanica" title="Gibanica">Gibanica</a></td>
<td><a href="/wiki/File:Gibanica.jpg" class="image"><img alt="Gibanica.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Gibanica.jpg/123px-Gibanica.jpg" width="123" height="84" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Gibanica.jpg/185px-Gibanica.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Gibanica.jpg/246px-Gibanica.jpg 2x" data-file-width="400" data-file-height="274" /></a></td>
<td><a href="/wiki/The_Balkans" title="The Balkans" class="mw-redirect">The Balkans</a></td>
<td>savory</td>
<td>A traditional Balkan pastry, usually made with <a href="/wiki/White_cheese" title="White cheese">white cheese</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Homity_pie" title="Homity pie">Homity pie</a></td>
<td></td>
<td><a href="/wiki/Great_Britain" title="Great Britain">Great Britain</a></td>
<td>savory</td>
<td>A traditional British, open vegetable pie. The pastry crust contains a filling of potatoes and an onion and <a href="/wiki/Leek" title="Leek">leek</a> mixture, which is then covered with cheese.</td>
</tr>
<tr>
<td><a href="/wiki/Hornazo" title="Hornazo">Hornazo</a></td>
<td><a href="/wiki/File:Hornazo-Mad.jpg" class="image"><img alt="Hornazo-Mad.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Hornazo-Mad.jpg/123px-Hornazo-Mad.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Hornazo-Mad.jpg/185px-Hornazo-Mad.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e2/Hornazo-Mad.jpg/246px-Hornazo-Mad.jpg 2x" data-file-width="3888" data-file-height="2592" /></a></td>
<td><a href="/wiki/Spain" title="Spain">Spain</a></td>
<td>savory</td>
<td>A Spanish meat pie made with flour and yeast and stuffed with pork loin, spicy <a href="/wiki/Chorizo" title="Chorizo">chorizo</a> sausage and <a href="/wiki/Boiled_egg" title="Boiled egg">hard-boiled eggs</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Jamaican_patty" title="Jamaican patty">Jamaican patty</a></td>
<td><a href="/wiki/File:Jamaican_patties_and_redstripe.jpg" class="image"><img alt="Jamaican patties and redstripe.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/ef/Jamaican_patties_and_redstripe.jpg/123px-Jamaican_patties_and_redstripe.jpg" width="123" height="123" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/ef/Jamaican_patties_and_redstripe.jpg/185px-Jamaican_patties_and_redstripe.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/ef/Jamaican_patties_and_redstripe.jpg/246px-Jamaican_patties_and_redstripe.jpg 2x" data-file-width="1828" data-file-height="1828" /></a></td>
<td><a href="/wiki/Jamaica" title="Jamaica">Jamaica</a>, <a href="/wiki/Caribbean" title="Caribbean">Caribbean</a></td>
<td>savoury</td>
<td>A small, baked pastry usually filled with seasoned <a href="/wiki/Ground_beef" title="Ground beef">ground beef</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Kalakukko" title="Kalakukko">Kalakukko</a></td>
<td><a href="/wiki/File:Kalakukko.jpg" class="image"><img alt="Kalakukko.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Kalakukko.jpg/123px-Kalakukko.jpg" width="123" height="58" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Kalakukko.jpg/185px-Kalakukko.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0c/Kalakukko.jpg/246px-Kalakukko.jpg 2x" data-file-width="1926" data-file-height="903" /></a></td>
<td><a href="/wiki/Finland" title="Finland">Finland</a></td>
<td>Savory</td>
<td>A loaf of bread filled with <a href="/wiki/Fish_(food)" title="Fish (food)">fish</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Karelian_pasties" title="Karelian pasties" class="mw-redirect">Karelian pasties</a></td>
<td><a href="/wiki/File:Karjalanpiirakka-20060227.jpg" class="image"><img alt="Karjalanpiirakka-20060227.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/78/Karjalanpiirakka-20060227.jpg/123px-Karjalanpiirakka-20060227.jpg" width="123" height="91" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/78/Karjalanpiirakka-20060227.jpg/185px-Karjalanpiirakka-20060227.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/78/Karjalanpiirakka-20060227.jpg/246px-Karjalanpiirakka-20060227.jpg 2x" data-file-width="2048" data-file-height="1508" /></a></td>
<td><a href="/wiki/Finland" title="Finland">Finland</a></td>
<td>Savory</td>
<td>Pasties made from a thin rye crust usually with a filling of <a href="/wiki/Rice" title="Rice">rice</a>, but originally the filling used to be mashed potatoes or barley.</td>
</tr>
<tr>
<td><a href="/wiki/Key_lime_pie" title="Key lime pie">Key lime pie</a></td>
<td><a href="/wiki/File:Key_limepie.jpg" class="image"><img alt="Key limepie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Key_limepie.jpg/123px-Key_limepie.jpg" width="123" height="80" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Key_limepie.jpg/185px-Key_limepie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Key_limepie.jpg/246px-Key_limepie.jpg 2x" data-file-width="1792" data-file-height="1164" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>Key <a href="/wiki/Lime_juice" title="Lime juice" class="mw-redirect">lime juice</a>, <a href="/wiki/Egg_yolk" title="Egg yolk">egg yolks</a>, and sweetened condensed milk in a pie crust</td>
</tr>
<tr>
<td><a href="/wiki/Khachapuri" title="Khachapuri">Khachapuri</a></td>
<td><a href="/wiki/File:Adjaruli_Khachapuri.jpg" class="image"><img alt="Adjaruli Khachapuri.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/80/Adjaruli_Khachapuri.jpg/123px-Adjaruli_Khachapuri.jpg" width="123" height="104" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/80/Adjaruli_Khachapuri.jpg/185px-Adjaruli_Khachapuri.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/80/Adjaruli_Khachapuri.jpg/246px-Adjaruli_Khachapuri.jpg 2x" data-file-width="1149" data-file-height="970" /></a></td>
<td>Georgia</td>
<td>Savory</td>
<td>Cheese-filled bread dish</td>
</tr>
<tr>
<td><a href="/wiki/Killie_pie" title="Killie pie">Killie pie</a></td>
<td><a href="/wiki/File:Killie_Pies_and_Peas.jpg" class="image"><img alt="Killie Pies and Peas.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/26/Killie_Pies_and_Peas.jpg/123px-Killie_Pies_and_Peas.jpg" width="123" height="80" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/26/Killie_Pies_and_Peas.jpg/185px-Killie_Pies_and_Peas.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/26/Killie_Pies_and_Peas.jpg/246px-Killie_Pies_and_Peas.jpg 2x" data-file-width="4725" data-file-height="3092" /></a></td>
<td><a href="/wiki/Kilmarnock,_Scotland" title="Kilmarnock, Scotland" class="mw-redirect">Kilmarnock, Scotland</a></td>
<td>Savoury</td>
<td>A steak pie served at <a href="/wiki/Kilmarnock_F.C." title="Kilmarnock F.C.">Kilmarnock F.C.</a> football ground</td>
</tr>
<tr>
<td><a href="/wiki/Knish" title="Knish">Knish</a></td>
<td><a href="/wiki/File:Lower_East_Side_-_Schimmel_Knish_2.jpg" class="image"><img alt="Lower East Side - Schimmel Knish 2.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/3/39/Lower_East_Side_-_Schimmel_Knish_2.jpg/123px-Lower_East_Side_-_Schimmel_Knish_2.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/39/Lower_East_Side_-_Schimmel_Knish_2.jpg/185px-Lower_East_Side_-_Schimmel_Knish_2.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/39/Lower_East_Side_-_Schimmel_Knish_2.jpg/246px-Lower_East_Side_-_Schimmel_Knish_2.jpg 2x" data-file-width="1024" data-file-height="768" /></a></td>
<td>Eastern Europe</td>
<td>Savory</td>
<td>Baked or fried dumpling made of flaky dough with filling of mashed potatoes, ground meat, <a href="/wiki/Sauerkraut" title="Sauerkraut">sauerkraut</a>, onions, kasha or cheese.</td>
</tr>
<tr>
<td><a href="/w/index.php?title=Kothropita&action=edit&redlink=1" class="new" title="Kothropita (page does not exist)">Kothropita</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Kuchen" title="Kuchen">Kuchen</a></td>
<td><a href="/wiki/File:Streuselkuchen7.jpg" class="image"><img alt="Streuselkuchen7.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Streuselkuchen7.jpg/123px-Streuselkuchen7.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Streuselkuchen7.jpg/185px-Streuselkuchen7.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b2/Streuselkuchen7.jpg/246px-Streuselkuchen7.jpg 2x" data-file-width="2592" data-file-height="1944" /></a></td>
<td>Germany</td>
<td>Sweet</td>
<td>generic term referring to "cake" in German</td>
</tr>
<tr>
<td><a href="/wiki/Lemon_ice_box_pie" title="Lemon ice box pie">Lemon ice box pie</a></td>
<td><a href="/wiki/File:Raspberry_lemon_ice_box_pie.jpg" class="image"><img alt="Raspberry lemon ice box pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Raspberry_lemon_ice_box_pie.jpg/123px-Raspberry_lemon_ice_box_pie.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Raspberry_lemon_ice_box_pie.jpg/185px-Raspberry_lemon_ice_box_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Raspberry_lemon_ice_box_pie.jpg/246px-Raspberry_lemon_ice_box_pie.jpg 2x" data-file-width="3008" data-file-height="2000" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>Lemon juice, eggs, and <a href="/wiki/Condensed_milk" title="Condensed milk">condensed milk</a> in a pie crust,<sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span>[</span>8<span>]</span></a></sup> with preparation very similar to that of <a href="/wiki/Key_lime_pie" title="Key lime pie">key lime pie</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Lemon_meringue_pie" title="Lemon meringue pie">Lemon meringue pie</a></td>
<td><a href="/wiki/File:NCI_Visuals_Food_Pie.jpg" class="image"><img alt="NCI Visuals Food Pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0e/NCI_Visuals_Food_Pie.jpg/123px-NCI_Visuals_Food_Pie.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0e/NCI_Visuals_Food_Pie.jpg/185px-NCI_Visuals_Food_Pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0e/NCI_Visuals_Food_Pie.jpg/246px-NCI_Visuals_Food_Pie.jpg 2x" data-file-width="2700" data-file-height="1800" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>Shortcrust or <a href="/w/index.php?title=Shortbread_pastry&action=edit&redlink=1" class="new" title="Shortbread pastry (page does not exist)">shortbread pastry</a> with lemon curd filling and a fluffy meringue topping.</td>
</tr>
<tr>
<td><a href="/wiki/Manchester_tart" title="Manchester tart">Manchester tart</a></td>
<td></td>
<td><a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a></td>
<td>Sweet</td>
<td>A baked tart consisting of a shortcrust pastry shell, spread with raspberry jam, covered with a custard filling and topped with flakes of coconut and a <a href="/wiki/Maraschino_cherry" title="Maraschino cherry">Maraschino cherry</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Meat_and_potato_pie" title="Meat and potato pie">Meat and potato pie</a></td>
<td><a href="/wiki/File:Grandma_Pollards_meat_and_potato_pies_(5815022642).jpg" class="image"><img alt="Grandma Pollards meat and potato pies (5815022642).jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/87/Grandma_Pollards_meat_and_potato_pies_%285815022642%29.jpg/123px-Grandma_Pollards_meat_and_potato_pies_%285815022642%29.jpg" width="123" height="93" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/87/Grandma_Pollards_meat_and_potato_pies_%285815022642%29.jpg/185px-Grandma_Pollards_meat_and_potato_pies_%285815022642%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/87/Grandma_Pollards_meat_and_potato_pies_%285815022642%29.jpg/246px-Grandma_Pollards_meat_and_potato_pies_%285815022642%29.jpg 2x" data-file-width="2592" data-file-height="1952" /></a></td>
<td><a href="/wiki/Yorkshire" title="Yorkshire">Yorkshire</a>, <a href="/wiki/Lancashire" title="Lancashire">Lancashire</a>, and <a href="/wiki/Cumbria" title="Cumbria">Cumbria</a> regions in the <a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a></td>
<td>Savory</td>
<td>Potato, either lamb or beef, and sometimes carrot and/or onion baked in a pastry shell.</td>
</tr>
<tr>
<td><a href="/wiki/Meat_pie" title="Meat pie">Meat pie</a></td>
<td><a href="/wiki/File:Homemade_meat_pie.jpg" class="image"><img alt="Homemade meat pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Homemade_meat_pie.jpg/123px-Homemade_meat_pie.jpg" width="123" height="77" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Homemade_meat_pie.jpg/185px-Homemade_meat_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Homemade_meat_pie.jpg/246px-Homemade_meat_pie.jpg 2x" data-file-width="2464" data-file-height="1545" /></a></td>
<td>Popular in <a href="/wiki/Europe" title="Europe">Europe</a>, <a href="/wiki/Australia" title="Australia">Australia</a>, <a href="/wiki/New_Zealand" title="New Zealand">New Zealand</a>, <a href="/wiki/Canada" title="Canada">Canada</a>, and <a href="/wiki/South_Africa" title="South Africa">South Africa</a></td>
<td>Savoury</td>
<td>A preparation common especially to the UK and Commonwealth countries. Originally a way to stretch ingredients when quantities were not enough for a single meal. Usually made with a hot water crust.</td>
</tr>
<tr>
<td><a href="/wiki/Melton_Mowbray_pork_pie" title="Melton Mowbray pork pie" class="mw-redirect">Melton Mowbray pork pie</a></td>
<td><a href="/wiki/File:Pork_pie.jpg" class="image"><img alt="Pork pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Pork_pie.jpg/123px-Pork_pie.jpg" width="123" height="152" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Pork_pie.jpg/185px-Pork_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7e/Pork_pie.jpg/246px-Pork_pie.jpg 2x" data-file-width="768" data-file-height="949" /></a></td>
<td><a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a></td>
<td>Savory</td>
<td>A hand-formed crust pork pie made with uncured chopped, rather than minced, meat.</td>
</tr>
<tr>
<td><a href="/wiki/Mince_pie" title="Mince pie">Mince pie</a></td>
<td><a href="/wiki/File:MincePieAlc1.jpg" class="image"><img alt="MincePieAlc1.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/79/MincePieAlc1.jpg/123px-MincePieAlc1.jpg" width="123" height="86" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/79/MincePieAlc1.jpg/185px-MincePieAlc1.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/79/MincePieAlc1.jpg/246px-MincePieAlc1.jpg 2x" data-file-width="1862" data-file-height="1300" /></a></td>
<td><a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a></td>
<td>Sweet</td>
<td>Small British sweet pie traditionally served during the Christmas season. Sweet pastry case filled with currants, suet and spices. Centuries ago they contained meat, suet & spices.</td>
</tr>
<tr>
<td><a href="/w/index.php?title=Minui_pie&action=edit&redlink=1" class="new" title="Minui pie (page does not exist)">Minui pie</a></td>
<td></td>
<td>Tibet</td>
<td>sweet/sour</td>
<td>Traditional pie made from the Minui fruit. The Minui tree blosoms every 5 years bearing only enough fruit for one small piece of pie.</td>
</tr>
<tr>
<td><a href="/wiki/Mississippi_mud_pie" title="Mississippi mud pie">Mississippi mud pie</a></td>
<td><a href="/wiki/File:Mud_pie.JPG" class="image"><img alt="Mud pie.JPG" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/de/Mud_pie.JPG/123px-Mud_pie.JPG" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/de/Mud_pie.JPG/185px-Mud_pie.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/de/Mud_pie.JPG/246px-Mud_pie.JPG 2x" data-file-width="1600" data-file-height="1200" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>Dessert pie consisting of a gooey chocolate filling on top of a crumbly chocolate crust; usually served with ice cream.</td>
</tr>
<tr>
<td><a href="/wiki/Natchitoches_meat_pie" title="Natchitoches meat pie">Natchitoches meat pie</a></td>
<td><a href="/wiki/File:Natchitoches-meatpies-and-beans-rice.jpg" class="image"><img alt="Natchitoches-meatpies-and-beans-rice.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/23/Natchitoches-meatpies-and-beans-rice.jpg/123px-Natchitoches-meatpies-and-beans-rice.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/23/Natchitoches-meatpies-and-beans-rice.jpg/185px-Natchitoches-meatpies-and-beans-rice.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/23/Natchitoches-meatpies-and-beans-rice.jpg/246px-Natchitoches-meatpies-and-beans-rice.jpg 2x" data-file-width="1280" data-file-height="960" /></a></td>
<td>Northern <a href="/wiki/Louisiana" title="Louisiana">Louisiana</a>, <a href="/wiki/United_States" title="United States">United States</a></td>
<td>Savory</td>
<td>Crescent-shaped, flaky wheat pastry <a href="/wiki/Turnover_(food)" title="Turnover (food)">turnover</a> with a savory meat filling.</td>
</tr>
<tr>
<td><a href="/w/index.php?title=Neapolitan_cake_pie&action=edit&redlink=1" class="new" title="Neapolitan cake pie (page does not exist)">Neapolitan cake pie</a></td>
<td></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>A combination of chocolate, vanilla, and strawberry cake mix baked into a pie crust.</td>
</tr>
<tr>
<td><a href="/wiki/Neapolitan_pie" title="Neapolitan pie" class="mw-redirect">Neapolitan pie</a></td>
<td></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>Chocolate, vanilla, and strawberry all combined into one pie.</td>
</tr>
<tr>
<td><a href="/wiki/%C3%96%C3%A7po%C3%A7maq" title="Öçpoçmaq">Öçpoçmaq</a></td>
<td><a href="/wiki/File:Echpochmak-wiki.jpg" class="image"><img alt="Echpochmak-wiki.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/18/Echpochmak-wiki.jpg/123px-Echpochmak-wiki.jpg" width="123" height="102" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/18/Echpochmak-wiki.jpg/185px-Echpochmak-wiki.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/18/Echpochmak-wiki.jpg/246px-Echpochmak-wiki.jpg 2x" data-file-width="638" data-file-height="529" /></a></td>
<td>Russia</td>
<td>Savoury</td>
<td>A triangular pastry, filled with minced beef, onion and potatoes. Considered a <a href="/wiki/Tatar_cuisine" title="Tatar cuisine">Tartar</a> national dish.</td>
</tr>
<tr>
<td><a href="/wiki/Pastilla" title="Pastilla">Pastilla</a><br />
<i>bastilla, bsteeya, b'stilla or bstilla</i></td>
<td><a href="/wiki/File:Pastilla9.jpg" class="image"><img alt="Pastilla9.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Pastilla9.jpg/123px-Pastilla9.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d9/Pastilla9.jpg/185px-Pastilla9.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/d/d9/Pastilla9.jpg 2x" data-file-width="227" data-file-height="170" /></a></td>
<td><a href="/wiki/Morocco" title="Morocco">Morocco</a></td>
<td>Savory</td>
<td>A traditional Berber meat pie traditionally made of <a href="/wiki/Squab_(food)" title="Squab (food)">squab</a> (fledgling pigeons) in crisp layers of warka dough, with a crunchy layer of toasted and ground almonds, cinnamon, and sugar.</td>
</tr>
<tr>
<td><a href="/wiki/Pasty" title="Pasty">Pasty</a></td>
<td><a href="/wiki/File:Cornish_pasty.jpg" class="image"><img alt="Cornish pasty.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Cornish_pasty.jpg/123px-Cornish_pasty.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Cornish_pasty.jpg/185px-Cornish_pasty.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4a/Cornish_pasty.jpg/246px-Cornish_pasty.jpg 2x" data-file-width="3648" data-file-height="2736" /></a></td>
<td><a href="/w/index.php?title=Cornwall,_United_Kingdom;_Canada&action=edit&redlink=1" class="new" title="Cornwall, United Kingdom; Canada (page does not exist)">Cornwall, United Kingdom; Canada</a></td>
<td>Savoury</td>
<td>A traditional lunch food for Cornish miners. The rolled part of the crust was used as a handle and left uneaten where it was soiled with arsenic-laden ore from the miner's hand.</td>
</tr>
<tr>
<td><a href="/wiki/Peach_pie" title="Peach pie" class="mw-redirect">Peach pie</a></td>
<td><a href="/wiki/File:Peach_custard_pie_(1416028394).jpg" class="image"><img alt="Peach custard pie (1416028394).jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Peach_custard_pie_%281416028394%29.jpg/123px-Peach_custard_pie_%281416028394%29.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Peach_custard_pie_%281416028394%29.jpg/185px-Peach_custard_pie_%281416028394%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a4/Peach_custard_pie_%281416028394%29.jpg/246px-Peach_custard_pie_%281416028394%29.jpg 2x" data-file-width="2272" data-file-height="1704" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Pecan_pie" title="Pecan pie">Pecan pie</a></td>
<td><a href="/wiki/File:Pecan_pie_slice.jpg" class="image"><img alt="Pecan pie slice.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/85/Pecan_pie_slice.jpg/123px-Pecan_pie_slice.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/85/Pecan_pie_slice.jpg/185px-Pecan_pie_slice.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/85/Pecan_pie_slice.jpg/246px-Pecan_pie_slice.jpg 2x" data-file-width="2560" data-file-height="1920" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>A pie made primarily of <a href="/wiki/Corn_syrup" title="Corn syrup">corn syrup</a> or <a href="/wiki/Molasses" title="Molasses">molasses</a> and <a href="/wiki/Pecan" title="Pecan">pecan</a> nuts in a pie shell.</td>
</tr>
<tr>
<td><a href="/wiki/Pie_a_la_mode" title="Pie a la mode" class="mw-redirect">Pie a la mode</a></td>
<td><a href="/wiki/File:Pie_A_La_Mode.JPG" class="image"><img alt="Pie A La Mode.JPG" src="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Pie_A_La_Mode.JPG/123px-Pie_A_La_Mode.JPG" width="123" height="75" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/af/Pie_A_La_Mode.JPG/185px-Pie_A_La_Mode.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/af/Pie_A_La_Mode.JPG/246px-Pie_A_La_Mode.JPG 2x" data-file-width="4387" data-file-height="2677" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>Pie with ice cream on top.</td>
</tr>
<tr>
<td><a href="/wiki/Pirozhki" title="Pirozhki">Pirozhki</a><br />
pirozhok, piroshki</td>
<td><a href="/wiki/File:Piroshki.JPG" class="image"><img alt="Piroshki.JPG" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Piroshki.JPG/123px-Piroshki.JPG" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Piroshki.JPG/185px-Piroshki.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Piroshki.JPG/246px-Piroshki.JPG 2x" data-file-width="3872" data-file-height="2592" /></a></td>
<td><a href="/wiki/Russia" title="Russia">Russia</a>, <a href="/wiki/Ukraine" title="Ukraine">Ukraine</a></td>
<td></td>
<td>It is a generic word for individual-sized baked or fried buns stuffed with a variety of fillings.</td>
</tr>
<tr>
<td><a href="/wiki/Pizza_Pie" title="Pizza Pie" class="mw-redirect">Pizza Pie</a></td>
<td></td>
<td>Naples</td>
<td>Savory</td>
<td>An oven-baked, flat, disc-shaped bread typically topped with a <a href="/wiki/Tomato_sauce" title="Tomato sauce">tomato sauce</a>, cheese (usually mozzarella) and various toppings depending on the culture</td>
</tr>
<tr>
<td><a href="/wiki/Pork_pie" title="Pork pie">Pork pie</a></td>
<td><a href="/wiki/File:Pork_pie_on_plate.jpg" class="image"><img alt="Pork pie on plate.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Pork_pie_on_plate.jpg/123px-Pork_pie_on_plate.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/77/Pork_pie_on_plate.jpg/185px-Pork_pie_on_plate.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/77/Pork_pie_on_plate.jpg/246px-Pork_pie_on_plate.jpg 2x" data-file-width="1200" data-file-height="803" /></a></td>
<td><a href="/wiki/Great_Britain" title="Great Britain">Britain</a></td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Pot_pie" title="Pot pie">Pot pie</a></td>
<td><a href="/wiki/File:Salad_and_pot_pie.jpg" class="image"><img alt="Salad and pot pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Salad_and_pot_pie.jpg/123px-Salad_and_pot_pie.jpg" width="123" height="83" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Salad_and_pot_pie.jpg/185px-Salad_and_pot_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/bd/Salad_and_pot_pie.jpg/246px-Salad_and_pot_pie.jpg 2x" data-file-width="921" data-file-height="624" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td></td>
<td>A pie that has no bottom crust. Normally made of a white sauce, turkey or chicken meat, carrots, peas, and pearl onions. This dish is often served with rice.</td>
</tr>
<tr>
<td><a href="/wiki/Pukka_Pies" title="Pukka Pies">Pukka Pies</a></td>
<td></td>
<td><a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a></td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Pumpkin_pie" title="Pumpkin pie">Pumpkin pie</a></td>
<td><a href="/wiki/File:Pumpkin_Pie.jpg" class="image"><img alt="Pumpkin Pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/14/Pumpkin_Pie.jpg/123px-Pumpkin_Pie.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/14/Pumpkin_Pie.jpg/185px-Pumpkin_Pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/14/Pumpkin_Pie.jpg/246px-Pumpkin_Pie.jpg 2x" data-file-width="2700" data-file-height="1796" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>Pumpkin-based <a href="/wiki/Custard" title="Custard">custard</a> flavored with <a href="/wiki/Nutmeg" title="Nutmeg">nutmeg</a>, cinnamon, <a href="/wiki/Clove" title="Clove">cloves</a>, and ginger, baked in a single pie shell. Very common in the autumn and early winter holidays.</td>
</tr>
<tr>
<td><a href="/wiki/Pirog" title="Pirog">Pirog</a></td>
<td><a href="/wiki/File:Fish_pie.JPG" class="image"><img alt="Fish pie.JPG" src="//upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Fish_pie.JPG/123px-Fish_pie.JPG" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Fish_pie.JPG/185px-Fish_pie.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Fish_pie.JPG/246px-Fish_pie.JPG 2x" data-file-width="2816" data-file-height="2112" /></a></td>
<td><a href="/wiki/Russia" title="Russia">Russia</a>, <a href="/wiki/Ukraine" title="Ukraine">Ukraine</a></td>
<td>Savory or sweet</td>
<td>Generic term for pies in Eastern-Slavic cuisines. The filling for pirog may be sweet and contain quark or cottage cheese, fruits like apples, plums or various berries, as well as honey, nuts or poppy seeds. Savoury versions may consist of meat, fish, mushrooms, cabbage, rice, buckwheat groats or potato.</td>
</tr>
<tr>
<td>Qumeshtore me pete</td>
<td></td>
<td><a href="/wiki/Albania" title="Albania">Albania</a></td>
<td>sweet</td>
</tr>
<tr>
<td><a href="/wiki/Quiche" title="Quiche">Quiche</a></td>
<td><a href="/wiki/File:Quiche.jpg" class="image"><img alt="Quiche.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/29/Quiche.jpg/123px-Quiche.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/29/Quiche.jpg/185px-Quiche.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/29/Quiche.jpg/246px-Quiche.jpg 2x" data-file-width="2272" data-file-height="1704" /></a></td>
<td><a href="/wiki/France" title="France">France</a></td>
<td></td>
<td>Generic term. Pastry base & sides, with various chopped fillings set in an egg/milk mix.</td>
</tr>
<tr>
<td><a href="/w/index.php?title=Raisin_pie&action=edit&redlink=1" class="new" title="Raisin pie (page does not exist)">Raisin pie</a></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Rappie_pie" title="Rappie pie">Rappie Pie</a></td>
<td><a href="/wiki/File:Rappie_pie.jpg" class="image"><img alt="Rappie pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Rappie_pie.jpg/123px-Rappie_pie.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Rappie_pie.jpg/185px-Rappie_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Rappie_pie.jpg/246px-Rappie_pie.jpg 2x" data-file-width="1000" data-file-height="750" /></a></td>
<td><a href="/wiki/Canada" title="Canada">Canada</a></td>
<td>Savoury</td>
<td>An <a href="/wiki/Acadian" title="Acadian" class="mw-redirect">Acadian</a> dish, also known as 'râpure,' consisting of grated potatoes, meat, onions, and soup stock./</td>
</tr>
<tr>
<td><a href="/wiki/Raspberry_pie" title="Raspberry pie" class="mw-redirect">Raspberry pie</a></td>
<td><a href="/wiki/File:Raspberry_pie.jpg" class="image"><img alt="Raspberry pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Raspberry_pie.jpg/123px-Raspberry_pie.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Raspberry_pie.jpg/185px-Raspberry_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b1/Raspberry_pie.jpg/246px-Raspberry_pie.jpg 2x" data-file-width="1024" data-file-height="766" /></a></td>
<td></td>
<td>Sweet</td>
<td>Pie filled with raspberries.</td>
</tr>
<tr>
<td><a href="/w/index.php?title=Razzleberry_Pie&action=edit&redlink=1" class="new" title="Razzleberry Pie (page does not exist)">Razzleberry Pie</a></td>
<td></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>Pie filled with raspberries and blackberries.</td>
</tr>
<tr>
<td><a href="/w/index.php?title=Red_velvet_cake_pie&action=edit&redlink=1" class="new" title="Red velvet cake pie (page does not exist)">Red velvet cake pie</a></td>
<td></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td></td>
</tr>
<tr>
<td><a href="/w/index.php?title=Red_velvet_cheesecake_pie&action=edit&redlink=1" class="new" title="Red velvet cheesecake pie (page does not exist)">Red velvet cheesecake pie</a></td>
<td></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td></td>
</tr>
<tr>
<td><a href="/wiki/Rhubarb_pie" title="Rhubarb pie">Rhubarb pie</a></td>
<td><a href="/wiki/File:Rhubarb_Pie.jpg" class="image"><img alt="Rhubarb Pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Rhubarb_Pie.jpg/123px-Rhubarb_Pie.jpg" width="123" height="85" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Rhubarb_Pie.jpg/185px-Rhubarb_Pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Rhubarb_Pie.jpg/246px-Rhubarb_Pie.jpg 2x" data-file-width="1089" data-file-height="750" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>Pie filled with diced <a href="/wiki/Rhubarb" title="Rhubarb">rhubarb</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Sambusac" title="Sambusac" class="mw-redirect">Sambusac</a> (also known as <i>singara</i>, <i>samosa</i>, or <i>samsa</i>)</td>
<td><a href="/wiki/File:Samosachutney.jpg" class="image"><img alt="Samosachutney.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Samosachutney.jpg/123px-Samosachutney.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Samosachutney.jpg/185px-Samosachutney.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/cb/Samosachutney.jpg/246px-Samosachutney.jpg 2x" data-file-width="1120" data-file-height="840" /></a></td>
<td><a href="/wiki/Indian_Subcontinent" title="Indian Subcontinent" class="mw-redirect">Indian Subcontinent</a>, <a href="/wiki/Central_Asia" title="Central Asia">Central Asia</a>, <a href="/wiki/Western_Asia" title="Western Asia">Western Asia</a>, <a href="/wiki/Horn_of_Africa" title="Horn of Africa">Horn of Africa</a>, <a href="/wiki/North_Africa" title="North Africa">North Africa</a>, <a href="/wiki/South_Africa" title="South Africa">South Africa</a></td>
<td>Savory</td>
<td>A fried or baked pastry with a savory filling such as spiced potatoes, onions, peas, <a href="/wiki/Lentil" title="Lentil">lentils</a>, ground lamb or chicken, often accompanied by <a href="/wiki/Chutney" title="Chutney">chutney</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Scotch_pie" title="Scotch pie">Scotch pie</a></td>
<td><a href="/wiki/File:Scotch_pie.jpg" class="image"><img alt="Scotch pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/58/Scotch_pie.jpg/123px-Scotch_pie.jpg" width="123" height="98" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/58/Scotch_pie.jpg/185px-Scotch_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/58/Scotch_pie.jpg/246px-Scotch_pie.jpg 2x" data-file-width="2878" data-file-height="2304" /></a></td>
<td><a href="/wiki/Scotland" title="Scotland">Scotland</a></td>
<td>Savory</td>
<td>A small, double-crust meat pie filled with minced <a href="/wiki/Mutton" title="Mutton" class="mw-redirect">mutton</a> or other meat.</td>
</tr>
<tr>
<td><a href="/wiki/Sea-pie" title="Sea-pie">Sea-pie</a><br />
Cipaille</td>
<td></td>
<td><a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a></td>
<td>Savory</td>
<td>A layered meat pie made with meat or fish, and is known to have been served to British sailors during the 18th century.</td>
</tr>
<tr>
<td><a href="/wiki/Sfiha" title="Sfiha">Sfiha</a></td>
<td><a href="/wiki/File:Sfiha2.jpg" class="image"><img alt="Sfiha2.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Sfiha2.jpg/123px-Sfiha2.jpg" width="123" height="70" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Sfiha2.jpg/185px-Sfiha2.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Sfiha2.jpg/246px-Sfiha2.jpg 2x" data-file-width="2279" data-file-height="1296" /></a></td>
<td><a href="/wiki/Levant" title="Levant">Levant</a></td>
<td>Savory</td>
<td>Open-faced meat pie made with ground mutton.</td>
</tr>
<tr>
<td><a href="/wiki/Shepherd%27s_Pie" title="Shepherd's Pie" class="mw-redirect">Shepherd's Pie</a></td>
<td><a href="/wiki/File:Shepherdspie2.JPG" class="image"><img alt="Shepherdspie2.JPG" src="//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Shepherdspie2.JPG/123px-Shepherdspie2.JPG" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/59/Shepherdspie2.JPG/185px-Shepherdspie2.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/59/Shepherdspie2.JPG/246px-Shepherdspie2.JPG 2x" data-file-width="540" data-file-height="361" /></a></td>
<td><a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a></td>
<td>Savory</td>
<td>Roasted mutton or lamb cooked in pie dish lined with mashed potato, with a mashed potato crust on top.</td>
</tr>
<tr>
<td><a href="/wiki/Shoofly_pie" title="Shoofly pie">Shoofly pie</a></td>
<td><a href="/wiki/File:Shoofly_pie_(3601409884).jpg" class="image"><img alt="Shoofly pie (3601409884).jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/76/Shoofly_pie_%283601409884%29.jpg/123px-Shoofly_pie_%283601409884%29.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/76/Shoofly_pie_%283601409884%29.jpg/185px-Shoofly_pie_%283601409884%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/76/Shoofly_pie_%283601409884%29.jpg/246px-Shoofly_pie_%283601409884%29.jpg 2x" data-file-width="4000" data-file-height="3000" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>A molasses pie common to Pennsylvania and the Delaware Valley.</td>
</tr>
<tr>
<td><a href="/wiki/Spanakopita" title="Spanakopita">Spanakopita</a><br />
spinach pie</td>
<td><a href="/wiki/File:Spanokopita_cropped.jpg" class="image"><img alt="Spanokopita cropped.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/7/78/Spanokopita_cropped.jpg/123px-Spanokopita_cropped.jpg" width="123" height="57" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/78/Spanokopita_cropped.jpg/185px-Spanokopita_cropped.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/78/Spanokopita_cropped.jpg/246px-Spanokopita_cropped.jpg 2x" data-file-width="1282" data-file-height="592" /></a></td>
<td>Greece</td>
<td>Savory</td>
<td>With a filling of chopped spinach, <a href="/wiki/Feta_cheese" title="Feta cheese" class="mw-redirect">feta cheese</a>, onions and eggs</td>
</tr>
<tr>
<td><a href="/wiki/Stargazy_pie" title="Stargazy pie">Stargazy pie</a></td>
<td><a href="/wiki/File:Baked_stargazy_pie.jpg" class="image"><img alt="Baked stargazy pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/40/Baked_stargazy_pie.jpg/123px-Baked_stargazy_pie.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/40/Baked_stargazy_pie.jpg/185px-Baked_stargazy_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/40/Baked_stargazy_pie.jpg/246px-Baked_stargazy_pie.jpg 2x" data-file-width="500" data-file-height="375" /></a></td>
<td><a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a></td>
<td>Savory</td>
<td>A Cornish dish made of baked pilchards, along with eggs and potatoes, covered with a pastry crust; the fish heads (and sometimes tails) are baked protruding through the crust, thus appearing to be gazing skyward.</td>
</tr>
<tr>
<td><a href="/wiki/Steak_and_kidney_pie" title="Steak and kidney pie">Steak and kidney pie</a></td>
<td><a href="/wiki/File:Steak_and_kidney_pie.jpg" class="image"><img alt="Steak and kidney pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Steak_and_kidney_pie.jpg/123px-Steak_and_kidney_pie.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Steak_and_kidney_pie.jpg/185px-Steak_and_kidney_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/c/c6/Steak_and_kidney_pie.jpg/246px-Steak_and_kidney_pie.jpg 2x" data-file-width="2304" data-file-height="1728" /></a></td>
<td><a href="/wiki/Great_Britain" title="Great Britain">Britain</a></td>
<td>Savory</td>
<td>Pie filled with a mixture of diced beef, diced kidney (often of ox, lamb, or pork), fried onion, and brown <a href="/wiki/Gravy" title="Gravy">gravy</a>. Also known as a "Kate and Sidney."</td>
</tr>
<tr>
<td><a href="/wiki/Steak_pie" title="Steak pie">Steak pie</a></td>
<td><a href="/wiki/File:Steak_and_onion_pie.jpg" class="image"><img alt="Steak and onion pie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Steak_and_onion_pie.jpg/123px-Steak_and_onion_pie.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Steak_and_onion_pie.jpg/185px-Steak_and_onion_pie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Steak_and_onion_pie.jpg/246px-Steak_and_onion_pie.jpg 2x" data-file-width="2048" data-file-height="1371" /></a></td>
<td><a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a></td>
<td>Savory</td>
<td>Meat pie made from stewing steak and beef gravy, enclosed in a pastry shell.</td>
</tr>
<tr>
<td><a href="/wiki/Strawberry_pie" title="Strawberry pie">Strawberry pie</a></td>
<td><a href="/wiki/File:Erdbeerkuchen_Konditorrezept.jpg" class="image"><img alt="Erdbeerkuchen Konditorrezept.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Erdbeerkuchen_Konditorrezept.jpg/123px-Erdbeerkuchen_Konditorrezept.jpg" width="123" height="59" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/83/Erdbeerkuchen_Konditorrezept.jpg/185px-Erdbeerkuchen_Konditorrezept.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/83/Erdbeerkuchen_Konditorrezept.jpg/246px-Erdbeerkuchen_Konditorrezept.jpg 2x" data-file-width="1582" data-file-height="764" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>Pie filled with strawberries.</td>
</tr>
<tr>
<td><a href="/wiki/Strawberry_rhubarb_pie" title="Strawberry rhubarb pie">Strawberry rhubarb pie</a></td>
<td><a href="/wiki/File:Filling_of_strawberry-rhubarb_pie,_April_2010.jpg" class="image"><img alt="Filling of strawberry-rhubarb pie, April 2010.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Filling_of_strawberry-rhubarb_pie%2C_April_2010.jpg/123px-Filling_of_strawberry-rhubarb_pie%2C_April_2010.jpg" width="123" height="164" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Filling_of_strawberry-rhubarb_pie%2C_April_2010.jpg/185px-Filling_of_strawberry-rhubarb_pie%2C_April_2010.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Filling_of_strawberry-rhubarb_pie%2C_April_2010.jpg/246px-Filling_of_strawberry-rhubarb_pie%2C_April_2010.jpg 2x" data-file-width="1200" data-file-height="1600" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>Pie filled with strawberries and rhubarb, usually with a lattice-style crust on top.</td>
</tr>
<tr>
<td><a href="/wiki/St._Stephen%27s_Day_pie" title="St. Stephen's Day pie" class="mw-redirect">St. Stephen's Day pie</a></td>
<td></td>
<td></td>
<td>Savory</td>
<td>A dish similar to cottage pie but made using turkey and ham.</td>
</tr>
<tr>
<td><a href="/wiki/Sugar_pie" title="Sugar pie">Sugar pie</a></td>
<td><a href="/wiki/File:MapleSugarPieAlc1.jpg" class="image"><img alt="MapleSugarPieAlc1.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/f/f2/MapleSugarPieAlc1.jpg/123px-MapleSugarPieAlc1.jpg" width="123" height="88" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f2/MapleSugarPieAlc1.jpg/185px-MapleSugarPieAlc1.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f2/MapleSugarPieAlc1.jpg/246px-MapleSugarPieAlc1.jpg 2x" data-file-width="1744" data-file-height="1250" /></a></td>
<td></td>
<td>Sweet</td>
<td>A single-crust pie with a filling made from flour, butter, salt, vanilla, and cream, with <a href="/wiki/Brown_sugar" title="Brown sugar">brown sugar</a> or <a href="/wiki/Maple_syrup" title="Maple syrup">maple syrup</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Sweet_potato_pie" title="Sweet potato pie">Sweet potato pie</a> <sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span>[</span>9<span>]</span></a></sup></td>
<td><a href="/wiki/File:SweetPotatoPie.jpg" class="image"><img alt="SweetPotatoPie.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/4/49/SweetPotatoPie.jpg/123px-SweetPotatoPie.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/49/SweetPotatoPie.jpg/185px-SweetPotatoPie.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/49/SweetPotatoPie.jpg/246px-SweetPotatoPie.jpg 2x" data-file-width="2592" data-file-height="1944" /></a></td>
<td><a href="/wiki/United_States" title="United States">United States</a></td>
<td>Sweet</td>
<td>A large tart in an open pie shell without a top crust, with a filling consisting of mashed sweet potatoes, milk, sugar and eggs, flavored with spices such as nutmeg.</td>
</tr>
<tr>
<td><a href="/wiki/Tarta_de_Santiago" title="Tarta de Santiago">Tarta de Santiago</a></td>
<td><a href="/wiki/File:Tarta_de_Santiago.jpg" class="image"><img alt="Tarta de Santiago.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Tarta_de_Santiago.jpg/123px-Tarta_de_Santiago.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Tarta_de_Santiago.jpg/185px-Tarta_de_Santiago.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Tarta_de_Santiago.jpg/246px-Tarta_de_Santiago.jpg 2x" data-file-width="2592" data-file-height="1944" /></a></td>
<td>Spain</td>
<td>Sweet</td>
<td>A cake or pie with a filling of ground almonds, eggs and sugar. The top of the pie is usually decorated with <a href="/wiki/Powdered_sugar" title="Powdered sugar">powdered sugar</a>, masked by an imprint of the Cross of Saint James (cruz de Santiago) which gives the pastry its name.</td>
</tr>
<tr>
<td><a href="/wiki/Tiropita" title="Tiropita">Tiropita</a><br />
Greek Cheese pie</td>
<td><a href="/wiki/File:Tyropita.jpg" class="image"><img alt="Tyropita.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Tyropita.jpg/123px-Tyropita.jpg" width="123" height="164" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Tyropita.jpg/185px-Tyropita.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Tyropita.jpg/246px-Tyropita.jpg 2x" data-file-width="375" data-file-height="500" /></a></td>
<td>Greece</td>
<td>Savory</td>
<td>Made with layers of buttered phyllo (alternatively, thick pastry or puff-pastry) and filled with a cheese-egg mixture.</td>
</tr>
<tr>
<td><a href="/wiki/Torta_caprese" title="Torta caprese">Torta caprese</a></td>
<td><a href="/wiki/File:Torta_caprese.jpg" class="image"><img alt="Torta caprese.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Torta_caprese.jpg/123px-Torta_caprese.jpg" width="123" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Torta_caprese.jpg/185px-Torta_caprese.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Torta_caprese.jpg/246px-Torta_caprese.jpg 2x" data-file-width="1024" data-file-height="686" /></a></td>
<td>Italy</td>
<td>Sweet</td>
<td>A flourless chocolate and <a href="/wiki/Almond" title="Almond">almond</a> or <a href="/wiki/Walnut" title="Walnut">walnut</a> cake.</td>
</tr>
<tr>
<td><a href="/wiki/Tourti%C3%A8re" title="Tourtière">Tourtière</a></td>
<td><a href="/wiki/File:Tourtiere_Fin.jpg" class="image"><img alt="Tourtiere Fin.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/1/13/Tourtiere_Fin.jpg/123px-Tourtiere_Fin.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/13/Tourtiere_Fin.jpg/185px-Tourtiere_Fin.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/13/Tourtiere_Fin.jpg/246px-Tourtiere_Fin.jpg 2x" data-file-width="1024" data-file-height="768" /></a></td>
<td><a href="/wiki/Canada" title="Canada">Canada</a>, Northern <a href="/wiki/New_England" title="New England">New England</a>, USA</td>
<td>Savory</td>
<td>A meat pie<sup id="cite_ref-10" class="reference"><a href="#cite_note-10"><span>[</span>10<span>]</span></a></sup> originating from <a href="/wiki/Quebec" title="Quebec">Quebec</a>, usually made with finely diced pork and/or veal, beef, fish, or <a href="/wiki/Game_(food)" title="Game (food)">wild game</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Treacle_tart" title="Treacle tart">Treacle tart</a></td>
<td><a href="/wiki/File:Treacle_Tart_with_clotted_cream.jpg" class="image"><img alt="Treacle Tart with clotted cream.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Treacle_Tart_with_clotted_cream.jpg/123px-Treacle_Tart_with_clotted_cream.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Treacle_Tart_with_clotted_cream.jpg/185px-Treacle_Tart_with_clotted_cream.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Treacle_Tart_with_clotted_cream.jpg/246px-Treacle_Tart_with_clotted_cream.jpg 2x" data-file-width="800" data-file-height="600" /></a></td>
<td><a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a></td>
<td>Sweet</td>
<td>A shortcrust pastry with a thick filling of golden syrup, <a href="/wiki/Breadcrumbs" title="Breadcrumbs" class="mw-redirect">breadcrumbs</a>, and <a href="/wiki/Lemon_juice" title="Lemon juice" class="mw-redirect">lemon juice</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Vlaai" title="Vlaai">Vlaai</a></td>
<td><a href="/wiki/File:Dutch_laddervlaai.jpg" class="image"><img alt="Dutch laddervlaai.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Dutch_laddervlaai.jpg/123px-Dutch_laddervlaai.jpg" width="123" height="92" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Dutch_laddervlaai.jpg/185px-Dutch_laddervlaai.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Dutch_laddervlaai.jpg/246px-Dutch_laddervlaai.jpg 2x" data-file-width="615" data-file-height="461" /></a></td>
<td><a href="/wiki/Netherlands" title="Netherlands">Netherlands</a></td>
<td>Sweet</td>
<td>A pie or tart consisting of a pastry and a filling of either fruit, a crumbled butter and sugar mix, or a cooked rice and <a href="/wiki/Custard" title="Custard">custard</a> <a href="/wiki/Porridge" title="Porridge">porridge</a>.</td>
</tr>
<tr>
<td><a href="/wiki/Watalappam" title="Watalappam">Watalappam</a></td>
<td></td>
<td><a href="/wiki/Sri_Lanka" title="Sri Lanka">Sri Lanka</a></td>
<td>Sweet</td>
<td>Coconut custard pudding made of coconut milk or condensed milk, jaggery, cashew nuts, eggs, and various spices, including cardamom, cloves, and nutmeg.</td>
</tr>
<tr>
<td><a href="/wiki/Woolton_pie" title="Woolton pie">Woolton pie</a> <sup id="cite_ref-11" class="reference"><a href="#cite_note-11"><span>[</span>11<span>]</span></a></sup></td>
<td></td>
<td><a href="/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a></td>
<td>Savory</td>
<td>Pie filled with vegetables such as potatoes or parsnips, cauliflower, swede, carrots, and turnips, topped with potato pastry and grated cheese, and served with vegetable gravy.</td>
</tr>
<tr>
<td><a href="/wiki/Zelnik" title="Zelnik">Zelnik</a></td>
<td></td>
<td><a href="/wiki/Balkans" title="Balkans">Balkans</a></td>
<td>Savory</td>
<td>A pastry composed of thin layers of phyllo dough filled with combinations of <a href="/wiki/Sirene" title="Sirene">sirene</a>, eggs, spinach, <a href="/wiki/Sorrel" title="Sorrel">sorrel</a>, browned meat, leeks, rice, and <a href="/wiki/Brining" title="Brining">brined</a> cabbage.</td>
</tr>
</table>
<h2><span class="mw-headline" id="See_also">See also</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=List_of_pies,_tarts_and_flans&action=edit&section=2" title="Edit section: See also">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<div class="div-col columns column-width" style="-moz-column-width: 30em; -webkit-column-width: 30em; column-width: 30em;">
<ul>
<li><a href="/wiki/List_of_breads" title="List of breads">List of breads</a></li>
<li><a href="/wiki/List_of_cakes" title="List of cakes">List of cakes</a></li>
<li><a href="/wiki/List_of_cookies" title="List of cookies">List of cookies</a></li>
<li><a href="/wiki/List_of_desserts" title="List of desserts">List of desserts</a></li>
<li><a href="/wiki/List_of_pastries" title="List of pastries">List of pastries</a></li>
<li><a href="/wiki/List_of_puddings" title="List of puddings">List of puddings</a></li>
</ul>
</div>
<table cellspacing="0" class="navbox" style="border-spacing:0;">
<tr>
<td style="padding:2px;">
<table cellspacing="0" class="nowraplinks noprint navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
<tr>
<td colspan="2" class="navbox-list navbox-odd" style="width:100%;padding:0px;">
<div style="padding:0em 0.25em;">
<ul>
<li style="display:inline;white-space:nowrap;"><span style="margin:auto 0.5em;"><a href="/wiki/File:Foodlogo2.svg" class="image"><img alt="Foodlogo2.svg" src="//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Foodlogo2.svg/24px-Foodlogo2.svg.png" width="24" height="17" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Foodlogo2.svg/36px-Foodlogo2.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Foodlogo2.svg/48px-Foodlogo2.svg.png 2x" data-file-width="146" data-file-height="106" /></a></span><span style="font-weight:bold;"><a href="/wiki/Portal:Food" title="Portal:Food">Food portal</a></span></li>
<li style="display:inline;white-space:nowrap;"><span style="margin:auto 0.5em;"><a href="/wiki/File:Text-x-generic.svg" class="image"><img alt="Text-x-generic.svg" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Text-x-generic.svg/21px-Text-x-generic.svg.png" width="21" height="21" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/20/Text-x-generic.svg/32px-Text-x-generic.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/20/Text-x-generic.svg/42px-Text-x-generic.svg.png 2x" data-file-width="48" data-file-height="48" /></a></span><span style="font-weight:bold;"><a href="/wiki/Portal:Lists" title="Portal:Lists" class="mw-redirect">Lists portal</a></span></li>
</ul>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<h2><span class="mw-headline" id="References">References</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=List_of_pies,_tarts_and_flans&action=edit&section=3" title="Edit section: References">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<div class="reflist" style="list-style-type: decimal;">
<ol class="references">
<li id="cite_note-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-1">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://recipes.wuzzle.org/index.php/45/600">Aloo Pie (Trinidad)</a> Accessed February 6, 2008.</span></li>
<li id="cite_note-2"><span class="mw-cite-backlink"><b><a href="#cite_ref-2">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="http://www.teara.govt.nz/NewZealanders/NewZealandPeoples/TheNewZealanders/12/en">http://www.teara.govt.nz/NewZealanders/NewZealandPeoples/TheNewZealanders/12/en</a><sup class="noprint Inline-Template"><span style="white-space: nowrap;">[<i><a href="/wiki/Wikipedia:Link_rot" title="Wikipedia:Link rot"><span title=" since March 2013">dead link</span></a></i>]</span></sup></span></li>
<li id="cite_note-Bakewell-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-Bakewell_3-0">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://books.google.com/books?id=C5AvKhLLoH4C&pg=PT70&dq=bakewell+pie&hl=en&sa=X&ei=uqdZUeDtAqfbiwK4joGADQ&ved=0CDEQ6AEwAA">United States of Pie: Regional Favorites from East to West and North to South - Adrienne Kane - Google Books</a></span></li>
<li id="cite_note-Free-4"><span class="mw-cite-backlink">^ <a href="#cite_ref-Free_4-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-Free_4-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://www.thefreedictionary.com/banoffee">banoffee - definition of banoffee by the Free Online Dictionary, Thesaurus and Encyclopedia</a></span></li>
<li id="cite_note-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://books.google.com/books?id=coA1FiirGxUC&pg=PA283&dq=Bumbleberry+Pie&hl=en&sa=X&ei=PqdZUZu-MoLjiAKur4DYAQ&ved=0CD0Q6AEwAg#v=onepage&q=Bumbleberry%20Pie&f=false">Good Housekeeping Great American Classics Cookbook - Beth Allen - Google Books</a></span></li>
<li id="cite_note-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-6">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://books.google.com/books?id=KUml-NrkyegC&pg=PA53&dq=Coulibiac&hl=en&sa=X&ei=0KZZUcj1FcXbiwLR2IGIDA&ved=0CDUQ6AEwAQ#v=onepage&q=Coulibiac&f=false">The Cook's Canon: 101 Classic Recipes Everyone Should Know - Raymond Sokolov - Google Books</a></span></li>
<li id="cite_note-scmp-1-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-scmp-1_7-0">^</a></b></span> <span class="reference-text"><span class="citation web">Jung, Susan. <a rel="nofollow" class="external text" href="http://www.scmp.com/article/980660/affair-tart">"Affair of the tart"</a>. <i>SCMP</i>. South China Morning Post<span class="reference-accessdate">. Retrieved 8 April 2014</span>.</span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3AList+of+pies%2C+tarts+and+flans&rft.atitle=Affair+of+the+tart&rft.aufirst=Susan&rft.au=Jung%2C+Susan&rft.aulast=Jung&rft.genre=article&rft_id=http%3A%2F%2Fwww.scmp.com%2Farticle%2F980660%2Faffair-tart&rft.jtitle=SCMP&rft.pub=South+China+Morning+Post&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span></span></li>
<li id="cite_note-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://books.google.com/books?id=3lsniJfoz7oC&pg=PT398&dq=Lemon+ice+box+pie&hl=en&sa=X&ei=hOInUfXCB6T7iwKpjoCQBg&ved=0CDsQ6AEwATgK">Screen Doors and Sweet Tea: Recipes and Tales from a Southern Cook - Martha Hall Foose - Google Books</a></span></li>
<li id="cite_note-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external text" href="http://books.google.com/books?id=u9gDAAAAMBAJ&pg=PA104&dq=sweet+potato+pie&hl=en&sa=X&ei=8aVZUZ-wIYe9iwKnk4HYDw&ved=0CGkQ6AEwCDgK#v=onepage&q=sweet%20potato%20pie&f=false">Ebony - Google Books</a></span></li>
<li id="cite_note-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-10">^</a></b></span> <span class="reference-text"><span id="CITEREFClark2010" class="citation">Clark, Edie (2010), <a rel="nofollow" class="external text" href="http://www.yankeemagazine.com/issues/2010-01/food/french-meat-pie">"Best Cook: Meat Pie French Canadian meat pies are a family legacy"</a>, <i>Yankee Magazine</i></span><span title="ctx_ver=Z39.88-2004&rfr_id=info%3Asid%2Fen.wikipedia.org%3AList+of+pies%2C+tarts+and+flans&rft.atitle=Best+Cook%3A+Meat+Pie+French+Canadian+meat+pies+are+a+family+legacy&rft.au=Clark%2C+Edie&rft.aufirst=Edie&rft.aulast=Clark&rft.date=2010&rft.genre=article&rft_id=http%3A%2F%2Fwww.yankeemagazine.com%2Fissues%2F2010-01%2Ffood%2Ffrench-meat-pie&rft.jtitle=Yankee+Magazine&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal" class="Z3988"><span style="display:none;"> </span></span></span></li>
<li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text">"Woolton pie creator dies", <i>The Times</i>, London, 17 August 1966, p.1.</span></li>
</ol>
</div>
<table cellspacing="0" class="navbox" style="border-spacing:0;">
<tr>
<td style="padding:2px;">
<table cellspacing="0" class="nowraplinks hlist collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit;">
<tr>
<th scope="col" class="navbox-title" colspan="2">
<div class="plainlinks hlist navbar mini">
<ul>
<li class="nv-view"><a href="/wiki/Template:Lists_of_prepared_foods" title="Template:Lists of prepared foods"><span title="View this template" style=";;background:none transparent;border:none;;">v</span></a></li>
<li class="nv-talk"><a href="/wiki/Template_talk:Lists_of_prepared_foods" title="Template talk:Lists of prepared foods"><span title="Discuss this template" style=";;background:none transparent;border:none;;">t</span></a></li>
<li class="nv-edit"><a class="external text" href="//en.wikipedia.org/w/index.php?title=Template:Lists_of_prepared_foods&action=edit"><span title="Edit this template" style=";;background:none transparent;border:none;;">e</span></a></li>
</ul>
</div>
<div style="font-size:110%;"><a href="/wiki/Lists_of_prepared_foods" title="Lists of prepared foods">Lists of prepared foods</a></div>
</th>
</tr>
<tr style="height:2px;">
<td colspan="2"></td>
</tr>
<tr>
<th scope="row" class="navbox-group">By origin</th>
<td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px;">
<div style="padding:0em 0.25em;">
<ul>
<li><a href="/wiki/List_of_African_dishes" title="List of African dishes">African</a></li>
<li><a href="/wiki/List_of_Argentine_dishes" title="List of Argentine dishes">Argentine</a></li>
<li><a href="/wiki/List_of_Bangladeshi_dishes" title="List of Bangladeshi dishes">Bangladeshi</a></li>
<li><a href="/wiki/List_of_Brazilian_dishes" title="List of Brazilian dishes">Brazilian</a></li>
<li><a href="/wiki/List_of_Burmese_dishes" title="List of Burmese dishes">Burmese</a></li>
<li><a href="/wiki/List_of_Chinese_dishes" title="List of Chinese dishes">Chinese</a></li>
<li><a href="/wiki/List_of_Colombian_dishes" title="List of Colombian dishes" class="mw-redirect">Colombian</a></li>
<li><a href="/wiki/List_of_English_dishes" title="List of English dishes">English</a></li>
<li><a href="/wiki/List_of_Philippine_dishes" title="List of Philippine dishes">Filipino</a></li>
<li><a href="/wiki/List_of_French_dishes" title="List of French dishes">French</a></li>
<li><a href="/wiki/List_of_German_dishes" title="List of German dishes">German</a></li>
<li><a href="/wiki/List_of_Greek_dishes" title="List of Greek dishes">Greek</a></li>
<li><a href="/wiki/List_of_Gyeongsang_dishes" title="List of Gyeongsang dishes">Gyeongsang</a></li>
<li><a href="/wiki/List_of_Hawaiian_dishes" title="List of Hawaiian dishes">Hawaiian</a></li>
<li><a href="/wiki/List_of_Hungarian_dishes" title="List of Hungarian dishes">Hungarian</a></li>
<li><a href="/wiki/List_of_Indian_dishes" title="List of Indian dishes">Indian</a></li>
<li><a href="/wiki/List_of_Indonesian_dishes" title="List of Indonesian dishes">Indonesian</a></li>
<li><a href="/wiki/List_of_Filipino_dishes" title="List of Filipino dishes" class="mw-redirect">Filipino</a></li>
<li><a href="/wiki/List_of_Irish_dishes" title="List of Irish dishes">Irish</a></li>
<li><a href="/wiki/List_of_Italian_dishes" title="List of Italian dishes">Italian</a></li>
<li><a href="/wiki/List_of_Japanese_dishes" title="List of Japanese dishes">Japanese</a></li>