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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
|
[[mediums]]
tag = "ReligiousArchitecture"
label = "Religious architecture"
description = "Temples, mosques, stupas, cathedrals."
disabled = false
[[mediums.works]]
name = "Erechtheion"
year = -421
location = "Athens, Greece"
wiki = "https://en.wikipedia.org/wiki/Erechtheion"
[[mediums.works.figures]]
file = "1280px-Erechtheum_Acropolis_Athens.jpg"
byline = "CC0 1.0 Jebulon"
[[mediums.works.figures]]
file = "1280px-Athen_Erechtheion_BW_2017-10-09_13-58-34.jpg"
byline = "CC BY-SA 3.0 Berthold Werner"
[[mediums.works]]
name = "Temple of Hephaestus"
year = -449
location = "Athens, Greece"
wiki = "https://en.wikipedia.org/wiki/Temple_of_Hephaestus"
[[mediums.works.figures]]
file = "1280px-Temple_of_Hephaestus_in_Athens_20180221-2.jpg"
byline = "CC BY-SA 4.0 Suicasmo"
[[mediums.works.figures]]
file = "1280px-Temple_of_Hephaestus_in_Athens_20180221-1.jpg"
byline = "CC BY-SA 4.0 Suicasmo"
[[mediums.works]]
name = "Luxor Temple"
year = -1400
location = "Thebes, Egypt"
wiki = "https://en.wikipedia.org/wiki/Luxor_Temple"
[[mediums.works.figures]]
file = "Luxor,_Luxor_Temple,_west_side_view,_Egypt,_Oct_2004.jpg"
byline = "CC BY-SA 2.0 Przemyslaw \"Blueshade\" Idzkiewicz"
[[mediums.works.figures]]
file = "Luxor_Temple_Obelisk.JPG"
byline = "Public domain Charlesdrakew"
[[mediums.works]]
name = "Pantheon"
year = 113
location = "Rome, Italy"
wiki = "https://en.wikipedia.org/wiki/Pantheon,_Rome"
[[mediums.works.figures]]
file = "1280px-Pantheon_Rom_1_cropped.jpg"
byline = "CC BY-SA 4.0 Rabax63"
[[mediums.works.figures]]
file = "1280px-Dome_of_Pantheon_Rome.JPG"
byline = "Public domain Dave Amos"
[[mediums.works]]
name = "Parthenon"
year = -447
location = "Athens, Greece"
wiki = "https://en.wikipedia.org/wiki/Parthenon"
[[mediums.works.figures]]
file = "1280px-Parthenon_from_west.jpg"
byline = "Public domain Mountain"
[[mediums.works.figures]]
file = "1280px-Parthenon,_Acropolis,_Athens,_Greece.jpg"
byline = "CC BY-SA 2.0 Jim Killock"
[[mediums.works]]
name = "Pergamon Altar"
year = -166
location = "Pergamon (present-day Turkey)"
wiki = "https://en.wikipedia.org/wiki/Pergamon_Altar"
[[mediums.works.figures]]
file = "Berlin_-_Pergamonmuseum_-_Altar_01.jpg"
byline = "CC BY-SA 3.0 Lestat (Jan Mehlich)"
[[mediums.works.figures]]
file = "Pergamonmuseum_-_Antikensammlung_-_Pergamonaltar_02-03.jpg"
byline = "GNU FDL Unknown"
[[mediums.works]]
name = "Temple of Zeus at Olympia"
year = -470
location = "Olympia, Greece"
wiki = "https://en.wikipedia.org/wiki/Temple_of_Zeus,_Olympia"
[[mediums.works.figures]]
file = "Attica_06-13_Athens_25_Olympian_Zeus_Temple.jpg"
byline = "CC BY-SA 3.0 A.Savin"
[[mediums.works.figures]]
file = "Olympieion2_copy.jpg"
byline = "CC BY-SA 4.0 Valentin Fiumefreddo (probable reconstruction)"
[[mediums.works]]
name = "Maison Carrée"
year = 2
location = "Nîmes, France"
wiki = "https://en.wikipedia.org/wiki/Maison_Carr%C3%A9e"
[[mediums.works.figures]]
file = "MaisonCarrée.jpeg"
byline = "Public domain Danichou"
[[mediums.works]]
name = "Dura-Europos Synagogue"
year = 244
location = "Dura-Europos, Syria"
wiki = "https://en.wikipedia.org/wiki/Dura-Europos_synagogue"
[[mediums.works.figures]]
file = "Doura_Europos_synagogue_courtyard.jpg"
byline = "CC BY-SA 3.0 Marsyas"
[[mediums.works.figures]]
file = "Herod's_Temple.jpg"
byline = "Public domain Unknown"
[[mediums.works]]
name = "Basilica of Sant’Apollinare in Classe"
year = 549
location = "Ravenna, Italy"
wiki = "https://en.wikipedia.org/wiki/Basilica_of_Sant%27Apollinare_in_Classe"
[[mediums.works.figures]]
file = "2012_ravenna_133.jpg"
byline = "CC BY-SA 3.0 Sansa55"
[[mediums.works.figures]]
file = "Ravenna_BW_1.JPG"
byline = "CC0 Berthold Werner"
[[mediums.works.figures]]
file = "3456px-Nave_of_Basilica_of_Sant'Apollinare_in_Classe,_Ravenna,_Italy.JPG"
byline = "CC BY-SA 4.0 Berkay0652"
[[mediums.works]]
name = "Aachen Cathedral"
year = 796
location = "Aachen, Germany"
wiki = "https://en.wikipedia.org/wiki/Aachen_Cathedral"
[[mediums.works.figures]]
file = "Aachen_Germany_Imperial-Cathedral-01.jpg"
byline = "CC BY-SA 3.0 CEphoto, Uwe Aranas"
[[mediums.works.figures]]
file = "Aachener_Dom_BW_2016-07-09_16-20-40.jpg"
byline = "CC BY-SA 3.0 Berthold Werner"
[[mediums.works.figures]]
file = "AachenCathedralMainPortalHDR.jpg"
byline = "CC BY-SA 2.5 maxgreene"
[[mediums.works]]
name = "All Saints’ Church"
year = 970
location = "Earls Barton, England"
wiki = "https://en.wikipedia.org/wiki/All_Saints%27_Church,_Earls_Barton"
[[mediums.works.figures]]
file = "EarlsBartonChurch.JPG"
byline = "CC BY-SA 2.5 R Neil Marshman"
[[mediums.works]]
name = "Durham Cathedral"
year = 1093
location = "Durham, England"
wiki = "https://en.wikipedia.org/wiki/Durham_Cathedral"
[[mediums.works.figures]]
file = "Durham_MMB_02_Cathedral.jpg"
byline = "CC BY-SA 4.0 mattbuck"
[[mediums.works.figures]]
file = "Durham_Cathedral._Interior.jpg"
byline = "CC BY-SA 3.0 Oliver-Bonjoch"
[[mediums.works]]
name = "Notre-Dame"
year = 1163
location = "Paris, France"
wiki = "https://en.wikipedia.org/wiki/Notre-Dame_de_Paris"
[[mediums.works.figures]]
file = "Cath%C3%A9drale_Notre-Dame_de_Paris%2C_3_June_2010.jpg"
byline = "CC BY-SA 2.0 sacratomato_hr"
[[mediums.works.figures]]
file = "Cath%C3%A9drale_Notre-Dame_de_Paris_-_15.jpg"
byline = "CC BY-SA 3.0 Carlos Delgado"
[[mediums.works]]
name = "Saint Trophimus’ Church"
year = 770
location = "Eschau, France"
wiki = "https://en.wikipedia.org/wiki/St_Trophimus%27_Church,_Eschau"
[[mediums.works.figures]]
file = "Abbatiale_Sainte_Trophime_d%27Eschau_%281%29.jpg"
byline = "CC BY-SA 3.0 J.schahl.87"
[[mediums.works.figures]]
file = "Eglise_Saint-Trophime%2C_Eschau_4.JPG"
byline = "CC BY-SA 4.0 Chris06"
[[mediums.works]]
name = "Alhambra"
year = 889
location = "Granada, Spain"
wiki = "https://en.wikipedia.org/wiki/Alhambra"
[[mediums.works.figures]]
file = "Dawn_Charles_V_Palace_Alhambra_Granada_Andalusia_Spain.jpg"
byline = "CC0 Jebulon"
[[mediums.works.figures]]
file = "Patio_de_los_leones.jpg"
byline = "CC BY 2.0 Jim Gordon"
[[mediums.works]]
name = "King’s College Chapel"
year = 1443
location = "Cambridge, England"
wiki = "https://en.wikipedia.org/wiki/King%27s_College_Chapel,_Cambridge"
[[mediums.works.figures]]
file = "King%27s_College_Chapel_from_The_Backs%2C_Cambridge%2C_UK.jpg"
byline = "GPL3 Unknown"
[[mediums.works.figures]]
file = "Cambridge_King%27s_College_Chapel.jpg"
byline = "CC BY-SA 4.0 Cc364"
[[mediums.works]]
name = "Melk Abbey"
year = 1089
location = "Melk, Austria"
wiki = "https://en.wikipedia.org/wiki/Melk_Abbey"
[[mediums.works.figures]]
file = "Stift_Melk%2C_Westansicht.jpg"
byline = "CC BY-SA 4.0 Thomas Ledl"
[[mediums.works.figures]]
file = "070526_Stift_Melk_02.jpg"
byline = "CC BY-SA 3.0 Aconcagua"
[[mediums.works]]
name = "Monreale Cathedral"
year = 1172
location = "Monreale, Italy"
wiki = "https://en.wikipedia.org/wiki/Monreale_Cathedral"
[[mediums.works.figures]]
file = "Monreale_Cathedral_exterior_BW_2012-10-09_10-23-10.jpg"
byline = "CC BY-SA 3.0 Berthold Werner"
[[mediums.works.figures]]
file = "MonrealeCathedral-pjt1.jpg"
byline = "CC BY-SA 3.0 pjt56"
[[mediums.works]]
name = "Amiens Cathedral"
year = 1220
location = "Amiens, France"
wiki = "https://en.wikipedia.org/wiki/Amiens_Cathedral"
[[mediums.works.figures]]
file = "0_Amiens_-_Cath%C3%A9drale_Notre-Dame_%281%29.JPG"
byline = "CC BY 3.0 Jean-Pol GRANDMONT"
[[mediums.works.figures]]
file = "Amiens_Cathedral_choir_Wikimedia_Commons.jpg"
byline = "CC BY-SA 3.0 Benh LIEU SONG"
[[mediums.works]]
name = "Arena Chapel"
year = 1305
location = "Padua, Italy"
wiki = "https://en.wikipedia.org/wiki/Scrovegni_Chapel"
[[mediums.works.figures]]
file = "La_Cappella_degli_Scrovegni.JPG"
byline = "GNU FDL Andrea Piroddi"
[[mediums.works.figures]]
file = "Padova_Cappella_degli_Scrovegni_Innen_Langhaus_West_1.jpg"
byline = "CC BY-SA 4.0 Zairon"
[[mediums.works]]
name = "Exeter Cathedral"
year = 1258
location = "Exeter, England"
wiki = "https://en.wikipedia.org/wiki/Exeter_Cathedral"
[[mediums.works.figures]]
file = "Exeter-28Ap11-wyrdlight.jpg"
byline = "CC BY-SA 3.0 Antony McCallum"
[[mediums.works.figures]]
file = "Inside_Exeter_Cathedral.jpg"
byline = "CC BY-SA 4.0 Edward Swift"
[[mediums.works]]
name = "Florence Cathedral"
year = 1436
location = "Florence, Italy"
wiki = "https://en.wikipedia.org/wiki/Florence_Cathedral"
[[mediums.works.figures]]
file = "View_of_Santa_Maria_del_Fiore_in_Florence.jpg"
byline = "CC BY-SA 2.0 Bruce Stokes on Flickr"
[[mediums.works.figures]]
file = "Duomo_Firenze_Apr_2008.jpg"
byline = "CC BY-SA 3.0 Gryffindor"
[[mediums.works]]
name = "Pazzi Chapel"
year = 1442
location = "Florence, Italy"
wiki = "https://en.wikipedia.org/wiki/Pazzi_Chapel"
[[mediums.works.figures]]
file = "Pazzi_Chapel_Santa_Croce_Apr_2008_P.JPG"
byline = "GNU FDL Gryffindor"
[[mediums.works.figures]]
file = "Pazzi_Chapel_Florence_Apr_2008.jpg"
byline = "CC BY-SA 3.0 Gryffindor"
[[mediums.works]]
name = "Basilica di Sant’Andrea"
year = 1472
location = "Mantua, Italy"
wiki = "https://en.wikipedia.org/wiki/Basilica_of_Sant%27Andrea,_Mantua"
[[mediums.works.figures]]
file = "MantovaBasilicaSantAndrea_cutnpaste_over_intrusions.jpg"
byline = "Public domain Sebi1"
[[mediums.works.figures]]
file = "Lombardia_Mantova5_tango7174.jpg"
byline = "CC BY-SA 4.0 Tango7174"
[[mediums.works]]
name = "Church of the Gesù"
year = 1568
location = "Rome, Italy"
wiki = "https://en.wikipedia.org/wiki/Church_of_the_Ges%C3%B9"
[[mediums.works.figures]]
file = "Church_of_the_Ges%C3%B9%2C_Rome.jpg"
byline = "CC BY-SA 3.0 Alessio Damato"
[[mediums.works.figures]]
file = "Chiesa_del_Ges%C3%B9_September_2015-1a.jpg"
byline = "CC BY-SA 4.0 Alvesgaspar"
[[mediums.works]]
name = "St Paul’s Cathedral"
year = 1675
location = "London, England"
wiki = "https://en.wikipedia.org/wiki/St_Paul%27s_Cathedral"
[[mediums.works.figures]]
file = "St_Pauls_aerial_%28cropped%29.jpg"
byline = "CC BY 2.0 Mark Fosh"
[[mediums.works.figures]]
file = "St_Paul%27s_Cathedral_Nave%2C_London%2C_UK_-_Diliff.jpg"
byline = "CC BY-SA 3.0 Diliff"
[[mediums.works]]
name = "Basilica of San Vitale"
year = 527
location = "Ravenna, Italy"
wiki = "https://en.wikipedia.org/wiki/Basilica_of_San_Vitale"
[[mediums.works.figures]]
file = "File:Basilica_of_San_Vitale,_Ravenna,_Italy.jpg"
byline = "CC BY-SA 4.0 Tango7174"
[[mediums.works]]
name = "Dome of the Rock"
year = 688
location = "Jerusalem"
wiki = "https://en.wikipedia.org/wiki/Dome_of_the_Rock"
[[mediums.works.figures]]
file = "Jerusalem-2013%282%29-Temple_Mount-Dome_of_the_Rock_%28SE_exposure%29.jpg"
byline = "CC BY-SA 4.0 Andrew Shiva"
[[mediums.works.figures]]
file = "Dehio_10_Dome_of_the_Rock_Section.jpg"
byline = "Public Domain Georg Dehio"
[[mediums.works]]
name = "Salt Lake Temple"
year = 1893
location = "Salt Lake City, United States"
wiki = "https://en.wikipedia.org/wiki/File:Salt_Lake_Temple,_Utah_-_Sept_2004-2.jpg"
[[mediums.works.figures]]
file = "Salt_Lake_Temple%2C_Utah_-_Sept_2004-2.jpg"
byline = "CC BY-SA 3.0 Entheta"
[[mediums.works.figures]]
file = "Salt_Lake_Temple_model_-_2_March_2013.jpg"
byline = "CC BY 2.0 Model: Peter McCann Architectural Models"
[[mediums.works]]
name = "Lotus Temple"
year = 1986
location = "Delhi, India"
wiki = "https://en.wikipedia.org/wiki/File:LotusDelhi.jpg"
[[mediums.works.figures]]
file = "LotusDelhi.jpg"
byline = "CC BY 2.0 Vandelizer"
[[mediums.works.figures]]
file = "Interior_of_Lotus_temple.jpg"
byline = "CC BY 2.0 Dinudey Baidya"
[[mediums.works]]
name = "Salzburg Cathedral"
year = 1614
location = "Salzburg, Germany"
wiki = "https://en.wikipedia.org/wiki/Salzburg_Cathedral"
[[mediums.works.figures]]
file = "Salzburg_Cathedral_1.jpg"
byline = "CC BY-SA 3.0 Bede735c"
[[mediums.works.figures]]
file = "Catedral_de_Salzburgo%2C_Salzburgo%2C_Austria%2C_2019-05-19%2C_DD_08.jpg"
byline = "CC BY-SA 4.0 Diego Delso"
[[mediums.works]]
name = "Cathedral of Our Lady of the Angels"
year = 2002
location = "Los Angeles, United States"
wiki = "Cathedral of Our Lady of the Angels"
[[mediums.works.figures]]
file = "Cathedral_of_Our_Lady_of_Angels%2C_Los_Angeles.JPG"
byline = "CC BY-SA 4.0 Los Angeles"
[[mediums.works.figures]]
file = "Interior_of_Cathedral_of_Our_Lady_of_the_Angels_dllu.jpg"
byline = "CC BY-SA 4.0 Daniel L. Lu (user:dllu)"
[[mediums.works]]
name = "Jasna Góra Monastery"
year = 1382
location = "Częstochowa, Poland"
wiki = "Częstochowa, Poland"
[[mediums.works.figures]]
file = "Cz%C4%99stochowa_klasztor_Jasna_G%C3%B3ra-2162.jpg"
byline = "CC BY-SA 3.0 plJerzy Szota"
[[mediums.works.figures]]
file = "Czestochowa-bazylika.jpg"
byline = "CC BY-SA 2.5 Skarabeusz"
[[mediums.works]]
name = "Independence Temple"
year = 1990
location = "Independence, Missouri, United States"
wiki = "https://en.wikipedia.org/wiki/Independence_Temple"
[[mediums.works.figures]]
file = "Independence_-_RLDS_Temple_02.jpg"
byline = "Public domain Ecjmartin1"
[[mediums.works]]
name = "Angkor Wat"
year = 1160
location = "Siem Reap, Cambodia"
wiki = "https://en.wikipedia.org/wiki/Angkor_Wat"
[[mediums.works.figures]]
file = "Angkor_Vat_%286931599619%29.jpg"
byline = "CC BY 2.0 Jean-Pierre Dalbéra"
[[mediums.works.figures]]
file = "Angkor-Wat-from-the-air.JPG"
byline = "CC BY 2.5 Charles J Sharp"
[[mediums.works.figures]]
file = "Statue_in_Cambodia.jpg"
byline = "CC BY-SA 2.0 mark sebastian"
[[mediums.works]]
name = "Ryōan-ji"
year = 1488
location = "Kyoto, Japan"
wiki = "https://en.wikipedia.org/wiki/Ry%C5%8Dan-ji"
[[mediums.works.figures]]
file = "Cherry_blossom_at_the_rock_garden_of_Ry%C5%8Dan-ji_Temple_in_Kyoto%2C_Japan.jpg"
byline = "CC BY-SA 4.0 Didier Moïse"
[[mediums.works]]
name = "Tōdai-ji"
year = 738
location = "Nara, Japan"
wiki = "https://en.wikipedia.org/wiki/T%C5%8Ddai-ji"
[[mediums.works.figures]]
file = "T%C5%8Ddai-ji_Kon-d%C5%8D.jpg"
byline = "CC BY-SA 3.0 Wiiii"
[[mediums.works.figures]]
file = "NaraTodaijiDaibutsu0212.jpg"
byline = "Public domain Unknown"
[[mediums.works]]
name = "Kinkaku-ji"
year = 1397
location = "Kyoto, Japan"
wiki = "Kinkaku-ji"
[[mediums.works.figures]]
file = "Kinkaku-ji_the_Golden_Temple_in_Kyoto_overlooking_the_lake_-_high_rez.JPG"
byline = "CC BY-SA 3.0 Jaycangel"
[[mediums.works]]
name = "Kofukuji"
year = 1624
location = "Nagasaki, Japan"
wiki = "https://en.wikipedia.org/wiki/Kofukuji_(Nagasaki)"
[[mediums.works.figures]]
file = "Nagasaki_Kofukuji_M5667.jpg"
byline = "Public domain Fg2"
[[mediums.works]]
name = "Peace Pagoda"
year = 1968
location = "San Francisco, United States"
wiki = "https://en.wikipedia.org/wiki/San_Francisco_Peace_Pagoda"
[[mediums.works.figures]]
file = "San_Francisco_japantowns_peace_tower.jpg"
byline = "Public domain Erik Harmon"
[[mediums.works]]
name = "Songyue Pagoda"
year = 523
location = "Mount Song, China"
wiki = "https://en.wikipedia.org/wiki/Songyue_Pagoda"
[[mediums.works.figures]]
file = "Pagoda_of_Songyue_Temple%2C_2015-09-25_20.jpg"
byline = "CC BY-SA 4.0 Siyuwj"
[[mediums.works.figures]]
file = "Pagoda_of_Songyue_Temple%2C_2015-09-25_08.jpg"
byline = "CC BY-SA 4.0 Siyuwj"
[[mediums.works]]
name = "Church of the Light"
year = 1989
location = "Ibaraki, Japan"
wiki = "https://en.wikipedia.org/wiki/Church_of_the_Light"
[[mediums.works.figures]]
file = "Ibaraki_Kasugaoka_Church_light_cross.jpg"
byline = "GNU FDL Bergmann"
[[mediums.works]]
name = "Mission San Diego de Alcalá"
year = 1769
location = "San Diego, United States"
wiki = "https://en.wikipedia.org/wiki/Mission_San_Diego_de_Alcal%C3%A1"
[[mediums.works.figures]]
file = "Mission_San_Diego_de_Alcal%C3%A1_-_church.jpg"
byline = "CC BY-SA 3.0 Bernard Gagnon"
[[mediums.works]]
name = "Temple of Heaven"
year = 1998
location = "Beijing, China"
wiki = "https://en.wikipedia.org/wiki/Temple_of_Heaven"
[[mediums.works.figures]]
file = "11_Temple_of_Heaven.jpg"
byline = "CC BY-SA 2.0 Philip Larson"
[[mediums.works.figures]]
file = "Hall_of_Prayer_for_Good_Harvests_interior_2014.jpg"
byline = "CC BY-SA 3.0 Daniel Case"
[[mediums.works]]
name = "Giant Wild Goose Pagoda"
year = 704
location = "Xi’an, China"
wiki = "https://en.wikipedia.org/wiki/Giant_Wild_Goose_Pagoda"
[[mediums.works.figures]]
file = "Giant_Wild_Goose_Pagoda.jpg"
byline = "CC BY-SA 2.5 Alex Kwok"
[[mediums.works]]
name = "El Castillo"
year = 950
location = "Chichen Itza, Mexico"
wiki = "https://en.wikipedia.org/wiki/El_Castillo,_Chichen_Itza"
[[mediums.works.figures]]
file = "Chichen_Itza_%283326547826%29.jpg"
byline = "CC BY-SA 2.0 Alastair Rae"
[[mediums.works.figures]]
file = "Serpent_head_at_the_base_of_El_Castillo.jpg"
byline = "CC BY 2.0 Frank Kovalchek"
[[mediums.works]]
name = "Temple of the Feathered Serpent"
year = 175
location = "Teotihuacan, Mexico"
wiki = "https://en.wikipedia.org/wiki/Temple_of_the_Feathered_Serpent,_Teotihuacan"
[[mediums.works.figures]]
file = "Teotihuac%C3%A1n%2C_M%C3%A9xico%2C_2013-10-13%2C_DD_80.JPG"
byline = "CC BY-SA 3.0 "
[[mediums.works.figures]]
file = "Teotihuacan%2C_Citadel%2C_Temple_of_the_Feathered_Serpent_%2820686669345%29.jpg"
byline = "CC BY 2.0 Arian Zwegers"
[[mediums.works]]
name = "Ziggurat of Ur"
year = -2150
location = "Ur, Iraq"
wiki = "https://en.wikipedia.org/wiki/Ziggurat_of_Ur"
[[mediums.works.figures]]
file = "Ancient_ziggurat_at_Ali_Air_Base_Iraq_2005.jpg"
byline = "CC BY 3.0 en:User:Hardnfast"
[[mediums.works]]
name = "Taj Mahal"
year = 1632
location = "Agra, India"
wiki = "https://en.wikipedia.org/wiki/Taj_Mahal"
[[mediums.works.figures]]
file = "Taj-Mahal.jpg"
byline = "CC BY-SA 4.0 Joel Godwin"
[[mediums.works.figures]]
file = "Inside_the_Taj_Mahal_in_Agra%2C_India_Wellcome_V0046065.jpg"
byline = "CC BY 4.0 Wellcome Collection"
[[mediums.works]]
name = "Lakshmana Temple"
year = 930
location = "Khajuraho, India"
wiki = "https://en.wikipedia.org/wiki/Lakshmana_Temple,_Khajuraho"
[[mediums.works.figures]]
file = "Khajuraho-Lakshmana_temple.JPG"
byline = "Christopher Voitus"
[[mediums.works.figures]]
file = "Lakshmana_Temple_12.jpg"
byline = "CC BY-SA 3.0 Antoine Taveneaux"
[[mediums.works]]
name = "Dashavatara Temple"
year = 500
location = "Deogarh, India"
wiki = "https://en.wikipedia.org/wiki/Dashavatara_Temple,_Deogarh"
[[mediums.works.figures]]
file = "Deogarh01.jpg"
byline = "CC BY-SA 2.0 byron aihara"
[[mediums.works.figures]]
file = "Door_Desavatara_Deogarh.jpg"
byline = "CC BY 2.0 Bob King"
[[mediums.works]]
name = "Hoysaleswara Temple"
year = 1121
location = "Halebidu, India"
wiki = "https://en.wikipedia.org/wiki/Hoysaleswara_Temple"
[[mediums.works.figures]]
file = "Hoysaleshwara_temple_in_Monsoon.JPG"
byline = "CC BY-SA 3.0 Karthikbs23"
[[mediums.works.figures]]
file = "12th-century_first_Nandi_facing_Shiva_shrine_at_Shaivism_Hindu_temple_Hoysaleswara_arts_Halebidu_Karnataka_India_2.jpg"
byline = "CC BY-SA 4.0 Ms Sarah Welch"
[[mediums.works]]
name = "Charminar"
year = 1591
location = "Hyderabad, India"
wiki = "https://en.wikipedia.org/wiki/Charminar"
[[mediums.works.figures]]
file = "Charminar-Pride_of_Hyderabad.jpg"
byline = "CC BY-SA 3.0 Gopikrishna Narla"
[[mediums.works.figures]]
file = "The_interior_view_of_Charminar.jpg"
byline = "CC BY-SA 4.0 Chinmayee Mishra"
[[mediums.works]]
name = "Sanchi Stupa"
year = -300
location = "Sanchi Town, India"
wiki = "https://en.wikipedia.org/wiki/Sanchi"
[[mediums.works.figures]]
file = "East_Gateway_-_Stupa_1_-_Sanchi_Hill_2013-02-21_4398.JPG"
byline = "CC BY 3.0 Biswarup Ganguly"
[[mediums.works.figures]]
file = "Temptation_of_the_Buddha_with_Mara_and_his_daughters_and_the_demons_of_Mara_fleeing_Sanchi_Stupa_1_Northern_Gateway.jpg"
byline = "CC BY-SA 3.0 Biswarup Ganguly"
[[mediums.works]]
name = "Golden Temple"
year = 1581
location = "Amritsar, India"
wiki = "https://en.wikipedia.org/wiki/Golden_Temple"
[[mediums.works.figures]]
file = "Golden_Temple_nighttime.jpg"
byline = "CC BY-SA 4.0 Marsmux"
[[mediums.works.figures]]
file = "Darbar_Sahib_interior_26_September_2018.jpg"
byline = "CC BY-SA 4.0 Amritpal Singh Mann"
[[mediums.works]]
name = "Songjiang Square Pagoda"
year = 1068
location = "Songjiang, China"
wiki = "https://en.wikipedia.org/wiki/Songjiang_Square_Pagoda"
[[mediums.works.figures]]
file = "Pagoda_at_Xingshengjiao_Temple.jpg"
byline = "CC BY-SA 4.0 Humanclose"
[[mediums.works]]
name = "Great Mosque of Xi’an"
year = 742
location = "Xi’an, China"
wiki = "https://en.wikipedia.org/wiki/Great_Mosque_of_Xi%27an"
[[mediums.works.figures]]
file = "Xian_Mosque3.jpg"
byline = "CC BY-SA 4.0 Tea4tori"
[[mediums.works.figures]]
file = "Great_Mosque_of_Xi%27an_pavilion_ceiling.JPG"
byline = "CC BY 3.0 BrokenSphere"
[[mediums.works.figures]]
file = "Chinese-style_minaret_of_the_Great_Mosque.jpg"
byline = "CC BY-SA 3.0 Mr. Tickle"
[[mediums]]
tag = "Pottery"
label = "Pottery"
description = "Thou, silent form, dost tease us out of thought."
disabled = false
[[mediums.works]]
name = "Kamaresware jug"
year = -1900
location = "Crete"
wiki = "https://en.wikipedia.org/wiki/Kamares_ware"
[[mediums.works.figures]]
file = "kamaresjug.jpg"
byline = "CC BY-SA 3.0 Wolfgang Sauber"
[[mediums.works]]
name = "Mycenaean stirrup-vase"
year = -1200
location = "Mycenae, Greece"
wiki = "https://en.wikipedia.org/wiki/Stirrup_jar"
[[mediums.works.figures]]
file = "stirrupvase.jpg"
byline = "CC BY 2.5 Marie-Lan Nguyen"
[[mediums.works]]
name = "Corinthian orientalizing jug"
year = -620
location = "Corinth, Greece"
wiki = "https://en.wikipedia.org/wiki/Orientalizing_period"
[[mediums.works.figures]]
file = "orientalizing.jpg"
byline = "Public domain Bibi Saint-Pol"
[[mediums.works]]
name = "Fighting amazons, attic black"
year = -520
location = "Athens, Greece"
wiki = "https://en.wikipedia.org/wiki/Black-figure_pottery"
[[mediums.works.figures]]
file = "blackfigure.jpg"
byline = "Public domain Jastrow"
[[mediums.works]]
name = "Niobid amphora, attic red"
year = -450
location = "Athens, Greece"
wiki = "https://en.wikipedia.org/wiki/Red-figure_pottery"
[[mediums.works.figures]]
file = "redfigure.jpg"
byline = "Public domain, Walters Art Museum"
[[mediums.works]]
name = "West Slope kantharos"
year = -300
location = "Athens"
wiki = "https://en.wikipedia.org/wiki/Hellenistic_art#West_Slope_ware"
[[mediums.works.figures]]
file = "westslope.jpg"
byline = "Attribution Giovanni Dall'Orto"
[[mediums.works]]
name = "Dragendorff 11 Arretine"
year = 50
location = "Arezzo, Italy"
wiki = "https://en.wikipedia.org/wiki/Terra_sigillata#Arretine_ware"
[[mediums.works.figures]]
file = "arretine.jpg"
byline = "Public domain Hartmann Linge"
[[mediums.works]]
name = "African Red Slip dish"
year = 400
location = "Tunisia"
wiki = "https://en.wikipedia.org/wiki/African_red_slip_ware"
[[mediums.works.figures]]
file = "africanredslip.jpg"
byline = "CC BY-SA 3.0 AgTigress"
[[mediums.works]]
name = "Hispano-Moresque dish"
year = 1500
location = "Valencia"
wiki = "https://en.wikipedia.org/wiki/Hispano-Moresque_ware"
[[mediums.works.figures]]
file = "hispanomoresque.jpg"
byline = "CC BY-SA 3.0 Marshall Colman"
[[mediums.works]]
name = "Castel Durante plate, Maiolica"
year = 1570
location = "Urbania, Italy"
wiki = "https://en.wikipedia.org/wiki/Maiolica"
[[mediums.works.figures]]
file = "maiolica.jpg"
byline = "Public domain Vassil"
[[mediums.works]]
name = "Rouen faience ewer"
year = 1720
location = "Rouen, France"
wiki = "https://en.wikipedia.org/wiki/Rouen_faience"
[[mediums.works.figures]]
file = "rouenfaience.jpg"
byline = "CC BY-SA 3.0 World Imaging"
[[mediums.works]]
name = "Tea and chocolate service, Meissen porcelain"
year = 1725
location = "Meissen, Germany"
wiki = "https://en.wikipedia.org/wiki/Meissen_porcelain"
[[mediums.works.figures]]
file = "meissen.jpg"
byline = "CC0 Johann Gregorius Höroldt"
[[mediums.works]]
name = "Saint-Cloud soft paste bowl"
year = 1710
location = "Saint-Cloud, France"
wiki = "https://en.wikipedia.org/wiki/Soft-paste_porcelain"
[[mediums.works.figures]]
file = "softpaste.jpg"
byline = "CC BY-SA 3.0 World Imaging"
[[mediums.works]]
name = "York Glazed jug"
year = 1250
location = "North Yorkshire, England"
wiki = "https://en.wikipedia.org/wiki/York_Glazed_Ware"
[[mediums.works.figures]]
file = "yorkware.jpg"
byline = "CC BY-SA 4.0 York Museums Trust Staff"
[[mediums.works]]
name = "Bone china cup"
year = 1820
location = "Staffordshire, England"
wiki = "https://en.wikipedia.org/wiki/Bone_china"
[[mediums.works.figures]]
file = "bonechina.jpg"
byline = "CC BY-SA 2.0 uk David Jackson"
[[mediums.works]]
name = "Midwinter Garden"
year = 1969
location = "Burslem, England"
wiki = "https://en.wikipedia.org/wiki/Midwinter_Pottery"
[[mediums.works.figures]]
file = "midwintergarden.jpg"
byline = "Public domain CLW"
[[mediums.works]]
name = "Spode, transfer printed china"
year = 1831
location = "Stoke-on-Trent, England"
wiki = "https://en.wikipedia.org/wiki/Spode"
[[mediums.works.figures]]
file = "spode.jpg"
byline = "CC BY-SA 3.0, VAwebteam"
[[mediums.works]]
name = "Bartmann salt-glazed stoneware"
year = 1700
location = "Bellarmine, Germany"
wiki = "https://en.wikipedia.org/wiki/Bartmann_jug"
[[mediums.works.figures]]
file = "bartmann.jpg"
byline = "CC BY-SA 2.0 Hadley Paul Garland"
[[mediums.works]]
name = "Delftware Japanese-style vase"
year = 1680
location = "Delft, Netherlands"
wiki = "https://en.wikipedia.org/wiki/Delftware"
[[mediums.works.figures]]
file = "delftware.jpg"
byline = "CC0 Daderot"
[[mediums.works]]
name = "Jasperware vase in Wedgwood blue"
year = 1790
location = "Stoke-on-Trent, England"
wiki = "https://en.wikipedia.org/wiki/Jasperware"
[[mediums.works.figures]]
file = "jasperware.jpg"
byline = "CC BY-SA 3.0 Victoria and Albert Museum"
[[mediums.works]]
name = "Pansy dish"
year = 1900
location = "Stockholm, Sweden"
wiki = "https://www.metmuseum.org/exhibitions/making-it-modern-european-ceramics-from-the-martin-eidelberg-collection/exhibition-objects"
[[mediums.works.figures]]
file = "pansy.jpg"
byline = "Public domain Metropolitan Museum"
[[mediums.works]]
name = "Rookwood vase"
year = 1893
location = "Cincinnati, Ohio"
wiki = "https://en.wikipedia.org/wiki/Rookwood_Pottery_Company"
[[mediums.works.figures]]
file = "rookwood.JPG"
byline = "CC0 Daderot"
[[mediums.works]]
name = "John Bartlam teapot"
year = 1769
location = "Cain Hoy, South Carolina, United States"
wiki = "https://www.worldcollectorsnet.com/articles/an-overview-of-american-pottery-companies-dates-and-discoveries-that-shaped-a-nations-art/"
[[mediums.works.figures]]
file = "bartlamteapot.jpg"
byline = "worldcollectorsnet.com"
[[mediums.works]]
name = "Glidden dinnerware"
year = 1953
location = "Alfred, New York, United States"
wiki = "http://dinnerwaremuseum.org/main/glidden-pottery/"
[[mediums.works.figures]]
file = "glidden.jpg"
byline = "Dinnerware Museum"
[[mediums.works]]
name = "Fiesta dinnerware"
year = 1939
location = "Newell, West Virginia, United States"
wiki = "https://www.orau.org/blog/museum/radiant-history-of-fiestaware.html"
[[mediums.works.figures]]
file = "fiesta.png"
byline = "Oak Ridge Associated Universities"
[[mediums.works]]
name = "Rio Grande glaze bowl"
year = 1425
location = "New Mexico, United States"
wiki = "https://en.wikipedia.org/wiki/Rio_Grande_Glaze_Ware"
[[mediums.works.figures]]
file = "riograndeglaze.png"
byline = "CC BY-SA 3.0 Dogofthedesert"
[[mediums.works]]
name = "Pueblo I jar"
year = 900
location = "Southwestern United States"
wiki = "https://en.wikipedia.org/wiki/Pueblo_pottery"
[[mediums.works.figures]]
file = "pueblo1.jpg"
byline = "Public domain US National Park Service"
[[mediums.works]]
name = "Pueblo II jar"
year = 1150
location = "Southwestern United States"
wiki = "https://en.wikipedia.org/wiki/Pueblo_pottery"
[[mediums.works.figures]]
file = "pueblo2.jpg"
byline = "CC BY-SA 4.0 Netherzone"
[[mediums.works]]
name = "Pueblo III jar"
year = 1350
location = "Southwestern United States"
wiki = "https://en.wikipedia.org/wiki/Pueblo_pottery"
[[mediums.works.figures]]
file = "pueblo3.jpg"
byline = "Public domain US National Park Service"
[[mediums.works]]
name = "Pueblo IV bowl"
year = 1600
location = "Southwestern United States"
wiki = "https://en.wikipedia.org/wiki/Pueblo_pottery"
[[mediums.works.figures]]
file = "pueblo4.jpg"
byline = "Riggs Pueblo Pottery Fund - Brooklyn Museum"
[[mediums.works]]
name = "Pueblo V pot"
year = 1945
location = "Southwestern United States"
wiki = "https://en.wikipedia.org/wiki/Pueblo_pottery"
[[mediums.works.figures]]
file = "pueblo5.jpg"
byline = "CC BY-SA 3.0 Cullen328"
[[mediums.works]]
name = "Wari pot"
year = 800
location = "Peru"
wiki = "https://en.wikipedia.org/wiki/Wari_culture"
[[mediums.works.figures]]
file = "wari.jpg"
byline = "Public domain Anonymous/"
[[mediums.works]]
name = "Kolomoki Mounds pot"
year = 600
location = "Georgia, United States"
wiki = "https://en.wikipedia.org/wiki/Kolomoki_Mounds"
[[mediums.works.figures]]
file = "kolomoki.jpg"
byline = "CC BY-SA 3.0 Bubba73"
[[mediums.works]]
name = "Hopewell pot"
year = 100
location = "Ohio, United States"
wiki = "https://en.wikipedia.org/wiki/Hopewell_pottery"
[[mediums.works.figures]]
file = "hopewell.jpg"
byline = "CC BY-SA 2.0 Deborah Platt"
[[mediums.works]]
name = "Hemphill pot"
year = 1350
location = "Moundville site, Alabama, United States"
wiki = "https://en.wikipedia.org/wiki/Mississippian_culture_pottery#Hemphill_style"
[[mediums.works.figures]]
file = "hemphill.jpg"
byline = "CC BY-SA 3.0 Jeffrey Reed"
[[mediums.works]]
name = "Maya vase"
year = 750
location = "Honduras"
wiki = "https://en.wikipedia.org/wiki/Maya_ceramics"
[[mediums.works.figures]]
file = "mayavase.jpg"
byline = "CC BY-SA 4.0 Durova"
[[mediums.works]]
name = "Olmec vessel"
year = 1000
location = "Mexico"
wiki = "https://en.wikipedia.org/wiki/Olmecs"
[[mediums.works.figures]]
file = "olmec.jpg"
byline = "CC0 Metropolitan Museum of Art"
[[mediums.works]]
name = "Moche portrait vessel"
year = 300
location = "Peru"
wiki = "https://en.wikipedia.org/wiki/Moche_portrait_vessel"
[[mediums.works.figures]]
file = "moche.JPG"
byline = "Public domain"
[[mediums.works]]
name = "Chancay effigy bottle"
year = 1250
location = "Peru"
wiki = "https://en.wikipedia.org/wiki/Ceramics_of_Indigenous_peoples_of_the_Americas"
[[mediums.works.figures]]
file = "chancay.jpg"
byline = "CC BY 2.5 Marie-Lan Nguyen"
[[mediums.works]]
name = "Faience Egyptian lotiform chalice"
year = -800
location = "Egypt"
wiki = "https://en.wikipedia.org/wiki/Pottery#Africa"
[[mediums.works.figures]]
file = "lotiform.jpg"
byline = "CC BY-SA 4.0 Metropolitan Museum of Art"
[[mediums.works]]
name = "Bowl of Reflections"
year = 1200
location = "Iran"
wiki = "https://en.wikipedia.org/wiki/Islamic_pottery"
[[mediums.works.figures]]
file = "bowlofreflections.jpg"
byline = "Brooklyn Museum"
[[mediums.works]]
name = "Dish with Kufic inscription"
year = 1100
location = "Nishapur, Iran"
wiki = "https://en.wikipedia.org/wiki/Islamic_pottery"
[[mediums.works.figures]]
file = "kufic.jpg"
byline = "Public domain Jastrow"
[[mediums.works]]
name = "Cooking pot"
year = 950
location = "Syria"
wiki = "https://en.wikipedia.org/wiki/Islamic_pottery"
[[mediums.works.figures]]
file = "syriapot.jpg"
byline = "Public domain Marie-Lan Nguyen"
[[mediums.works]]
name = "Plate with dragon"
year = 1650
location = "Persia"
wiki = "https://en.wikipedia.org/wiki/Islamic_pottery"
[[mediums.works.figures]]
file = "persiandragon.jpg"
byline = "Public domain Jastrow"
[[mediums.works]]
name = "Lustreware bowl"
year = 850
location = "Iraq"
wiki = "https://en.wikipedia.org/wiki/Islamic_pottery"
[[mediums.works.figures]]
file = "lustreware.jpg"
byline = "Public domain Marie-Lan Nguyen"
[[mediums.works]]
name = "Bowl with hunters"
year = 1200
location = "Persia"
wiki = "https://en.wikipedia.org/wiki/Islamic_pottery"
[[mediums.works.figures]]
file = "persiancup.jpg"
byline = "Public domain"
[[mediums.works]]
name = "Contoured marli dish"
year = 1555
location = "Iznik, Turkey"
wiki = "https://en.wikipedia.org/wiki/Islamic_pottery"
[[mediums.works.figures]]
file = "marlidish.jpg"
byline = "CC BY-SA 4.0 MBALyon"
[[mediums.works]]
name = "Sialk pot"
year = -4500
location = "Persia"
wiki = "https://en.wikipedia.org/wiki/Persian_pottery"
[[mediums.works.figures]]
file = "iranancientvessel.jpg"
byline = "CC BY-SA 3.0 Zereshk"
[[mediums.works]]
name = "Bilbil juglets"
year = -1300
location = "Israel"
wiki = "https://en.wikipedia.org/wiki/Levantine_pottery"
[[mediums.works.figures]]
file = "bilbiljuglet.jpg"
byline = "CC BY-SA 3.0 Hanay"
[[mediums.works]]
name = "Vera Tamari, Spring"
year = 2014
location = "Palestine"
wiki = "https://dafbeirut.org/en/vera-tamari/works/637-234109-four-season-sculpture-spring"
[[mediums.works.figures]]
file = "veratamari.jpg"
byline = "Vera Tamari"
[[mediums.works]]
name = "Benjarong vase"
year = 1800
location = "Thailand"
wiki = "https://en.wikipedia.org/wiki/Thai_ceramics"
[[mediums.works.figures]]
file = "benjarong.jpg"
byline = "CC BY-SA 4.0 Bjoertvedt"
[[mediums.works]]
name = "Sukhothai bowl"
year = 1500
location = "Thailand"
wiki = "https://en.wikipedia.org/wiki/Thai_ceramics"
[[mediums.works.figures]]
file = "sukhothai.jpg"
byline = "Public domain LACMA"
[[mediums.works]]
name = "Bang Chiang vase"
year = -2300
location = "Thailand"
wiki = "https://en.wikipedia.org/wiki/Thai_ceramics"
[[mediums.works.figures]]
file = "bangchiang.jpg"
byline = "Public domain Gryffindor"
[[mediums.works]]
name = "Yue porcelain"
year = 750
location = "North Vietnam"
wiki = ""
[[mediums.works.figures]]
file = "yueporcelain.jpg"
byline = "CC0 Daderot"
[[mediums.works]]
name = "Chu Đậu jar"
year = 1350
location = "Nam Sách, Vietnam"
wiki = ""
[[mediums.works.figures]]
file = "chudao.jpg"
byline = "CC0 Metropolitan Museum of Art"
[[mediums.works]]
name = "Bát Tràng pot"
year = 1850
location = "Bát Tràng"
wiki = ""
[[mediums.works.figures]]
file = "battrang.jpg"
byline = "CC0 Daderot"
[[mediums.works]]
name = "Pot with four ibex"
year = -2650
location = "Pakistan"
wiki = "https://en.wikipedia.org/wiki/Pottery_in_the_Indian_subcontinent#Classical_Age_Pottery_and_Cultures_(c._500_BCE_to_1000_CE)"
[[mediums.works.figures]]
file = "ibex.jpg"
byline = "CC BY 3.0 Sailko"
[[mediums.works]]
name = "Harappan Vase"
year = -2525
location = "Pakistan"
wiki = "https://en.wikipedia.org/wiki/Pottery_in_the_Indian_subcontinent#Classical_Age_Pottery_and_Cultures_(c._500_BCE_to_1000_CE)"
[[mediums.works.figures]]
file = "harappanvase.jpg"
byline = "Public domain LACMA"
[[mediums.works]]
name = "West Bengal vase"
year = -100
location = "West Bengal"
wiki = "https://en.wikipedia.org/wiki/Pottery_in_the_Indian_subcontinent#Classical_Age_Pottery_and_Cultures_(c._500_BCE_to_1000_CE)"
[[mediums.works.figures]]
file = "westbengalvase.jpg"
byline = "CC BY-SA 2.5 artifacts"
[[mediums.works]]
name = "Jaipur Blue vase"
year = 1880
location = "Jaipur, India"
wiki = "https://en.wikipedia.org/wiki/Blue_pottery_of_Jaipur"
[[mediums.works.figures]]
file = "jaipurblue.jpg"
byline = "CC BY-SA 4.0 Neek-Theri"
[[mediums.works]]
name = "Celadon Goryeoware incense burner"
year = 1150
location = "Korea"
wiki = "https://en.wikipedia.org/wiki/Korean_pottery_and_porcelain"
[[mediums.works.figures]]
file = "celadonburner.jpg"
byline = "CC BY-SA 3.0 Steve46814"
[[mediums.works]]
name = "Long-necked jar with figurines, Silla kingdom"
year = 500
location = "Korea"
wiki = "https://en.wikipedia.org/wiki/Korean_pottery_and_porcelain"
[[mediums.works.figures]]
file = "koreanjar.jpg"
byline = "Public domain"
[[mediums.works]]
name = "Joseon jar with pine and bamboo"
year = 1489
location = "Korea"
wiki = "https://en.wikipedia.org/wiki/Korean_pottery_and_porcelain"
[[mediums.works.figures]]
file = "joseonjar.jpg"
byline = "Public domain"
[[mediums.works]]
name = "Joseon porcelain pot with grapes and monkey"
year = 1725
location = "Korea"
wiki = "https://en.wikipedia.org/wiki/Korean_pottery_and_porcelain"
[[mediums.works.figures]]
file = "joseon18c.jpg"
byline = "Public domain"
[[mediums.works]]
name = "Korean spindle vase, Young-jae Lee"
year = 2006
location = "Korea"
wiki = "https://en.wikipedia.org/wiki/Korean_pottery_and_porcelain"
[[mediums.works.figures]]
file = "spindlevase.jpg"
byline = "Art Institute of Chicago"
[[mediums.works]]
name = "Jomon flame-style vase"
year = -2500
location = "Nagaoka, Niigata, Japan"
wiki = "https://en.wikipedia.org/wiki/Japanese_pottery_and_porcelain"
[[mediums.works.figures]]
file = "jomonflame.jpg"
byline = "Public domain"
[[mediums.works]]
name = "Atsumi-ware pot, Heian period"
year = 1175
location = "Japan"
wiki = "https://en.wikipedia.org/wiki/Japanese_pottery_and_porcelain"
[[mediums.works.figures]]
file = "atsumiwarepot.jpg"
byline = "Public domain"
[[mediums.works]]
name = "Edo sake ewer"
year = 1650
location = "Japan"
wiki = "https://en.wikipedia.org/wiki/Japanese_pottery_and_porcelain"
[[mediums.works.figures]]
file = "edosakeewer.jpg"
byline = "Public domain"
[[mediums.works]]
name = "Porcelain vases, Miyagawa Kozan I"
year = 1910
location = "Kyoto, Japan"
wiki = "https://en.wikipedia.org/wiki/Japanese_pottery_and_porcelain"
[[mediums.works.figures]]
file = "japanesemodernporcelain.jpg"
byline = "CC BY 2.0 Jean-Pierre Dalbéra"
[[mediums.works]]
name = "Blue porcelain vase by Imaemon Imaizumi XII, gifted to Gerald Ford"
year = 1975
location = "Japan"
wiki = "https://en.wikipedia.org/wiki/Japanese_pottery_and_porcelain"
[[mediums.works.figures]]
file = "imaizumi.jpg"
byline = "Public domain"
[[mediums.works]]
name = "Yayoi jar"
year = 150
location = "Tokyo, Japan"
wiki = "https://en.wikipedia.org/wiki/Japanese_pottery_and_porcelain"
[[mediums.works.figures]]
file = "yayoi.jpg"
byline = "Public domain"
[[mediums.works]]
name = "Xianrendong Fragment"
year = -20000
location = "Xianrendong, China"
wiki = "https://en.wikipedia.org/wiki/Xianren_Cave"
[[mediums.works.figures]]
file = "xianrendong.jpg"
byline = "CC BY-SA 4.0 Brasil Online"
[[mediums.works]]
name = "Longshan Stem Cup"
year = -2250
location = "Longshan, Shandong, China"
wiki = "https://en.wikipedia.org/wiki/Chinese_ceramics"
[[mediums.works.figures]]
file = "longshancup.jpg"
byline = "CC0"
[[mediums.works]]
name = "White pottery lei (reconstructed)"
year = -1200
location = "Yinxu, China"
wiki = "https://en.wikipedia.org/wiki/Chinese_ceramics"
[[mediums.works.figures]]
file = "bronzelei.jpg"
byline = "CC0"
[[mediums.works]]
name = "Proto-porcelain jar"
year = 300
location = "Zhejiang, China"
wiki = "https://en.wikipedia.org/wiki/Chinese_ceramics"
[[mediums.works.figures]]
file = "protoporcelain.jpg"
byline = "Public domain"
[[mediums.works]]
name = "Han dynasty painted pot"
year = -100
location = "Western Han Dynasty"
wiki = "https://en.wikipedia.org/wiki/Chinese_ceramics"
[[mediums.works.figures]]
file = "hanpot.jpg"
byline = "CC BY 2.0 Rosemania"
[[mediums.works]]
name = "Sancai-glazed Tang dynasty tray"
year = 700
location = "China"
wiki = "https://en.wikipedia.org/wiki/Chinese_ceramics"
[[mediums.works.figures]]
file = "sancaitray.jpg"
byline = "Public domain Vassil"
[[mediums.works]]
name = "Southern Song dynasty pot"
year = 1150
location = "China"
wiki = "https://en.wikipedia.org/wiki/Chinese_ceramics"
[[mediums.works.figures]]
file = "songpot.jpg"
byline = "CC BY-SA 4.0 Key-museo"
[[mediums.works]]
name = "Yuan dynasty vase"
year = 1351
location = "China"
wiki = "https://en.wikipedia.org/wiki/Chinese_ceramics"
[[mediums.works.figures]]
file = "yuanvase.jpg"
byline = "Public domain"
[[mediums.works]]
name = "Ming dynasty wucai jar in Wanli period"
year = 1595
location = "Jingdezhen, China"
wiki = "https://en.wikipedia.org/wiki/Chinese_ceramics"
[[mediums.works.figures]]
file = "wucai.jpg"
byline = "Public domain"
[[mediums.works]]
name = "Qianlong vase, Qing dynasty"
year = 1736
location = "China"
wiki = "https://en.wikipedia.org/wiki/Chinese_ceramics"
[[mediums.works.figures]]
file = "qianlongvase.jpg"
byline = "CC0 Cleveland Art"
[[mediums.works]]
name = "Porcelain vase with overglaze enamel, Qing dynasty"
year = 1850
location = "Guangdong, China"
wiki = "https://en.wikipedia.org/wiki/Chinese_ceramics"
[[mediums.works.figures]]
file = "qingporcelain.jpg"
byline = "CC BY-SA 4.0 King muh"
[[mediums.works]]
name = "Ru warming bowl"
year = 1100
location = "Baofeng, Hunan, China"
wiki = "https://en.wikipedia.org/wiki/Ru_ware"
[[mediums.works.figures]]
file = "rubowl.jpg"
byline = "CC BY 4.0 National Palace Museum of Taiwan"
|