-
Notifications
You must be signed in to change notification settings - Fork 1
/
national-gallery-singapore.html
995 lines (495 loc) · 59.1 KB
/
national-gallery-singapore.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" prefix="og: http://ogp.me/ns#">
<head profile="http://gmpg.org/xfn/11"><!-- Start Wayback Rewrite JS Include -->
<script type="text/javascript" src="/static/js/wombat.js?v=uVfyaniA" charset="utf-8"></script>
<script type="text/javascript">
if (window._WBWombatInit) {
_wb_uc = new URL("https://www.dailyserving.com/2016/09/between-declarations-and-dreams-art-of-southeast-asia-since-the-19th-century-at-the-national-gallery-singapore/");
wbinfo = {}
wbinfo.url = "https://www.dailyserving.com/2016/09/between-declarations-and-dreams-art-of-southeast-asia-since-the-19th-century-at-the-national-gallery-singapore/";
wbinfo.timestamp = "20201225142119";
wbinfo.request_ts = "20201225142119";
wbinfo.prefix = "https://wayback.archive-it.org/15633/";
wbinfo.mod = "";
wbinfo.is_framed = false;
wbinfo.is_live = false;
wbinfo.coll = "15633";
wbinfo.proxy_magic = "";
wbinfo.static_prefix = "/static/";
wbinfo.enable_auto_fetch = true;
wbinfo.auto_fetch_worker_prefix = "https://wayback.archive-it.org/15633/";
wbinfo.wombat_ts = "20201225142119";
wbinfo.wombat_sec = "1608906079";
wbinfo.wombat_scheme = ( _wb_uc.protocol || 'http').replace(/:$/, '');
wbinfo.wombat_host = _wb_uc.host;
wbinfo.wombat_opts = {
no_rewrite_prefixes: [
"https://wayback.archive-it.org/15633/",
"//archive-it.org/",
"https://partner.archive-it.org/",
]
};
window._WBWombatInit(wbinfo);
// variables useful for rulesengine rewrites from old ait-client_rewrite.js
WB_RewriteUrl = _wb_wombat.rewrite_url;
WB_ExtractOrig = _wb_wombat.extract_orig;
WB_wombat_self_location = window.WB_wombat_location
}
</script>
<script type="text/javascript" src="https://partner.archive-it.org/static/AIT_Analytics.js" async="async"></script>
<!-- End Wayback Rewrite JS Include -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta property="fb:app_id" content="230929536992105"/>
<title>
DAILY SERVING » Between Declarations and Dreams: Art of Southeast Asia Since the 19th Century at the National Gallery Singapore
</title>
<link rel="stylesheet" href="https://wayback.archive-it.org/15633/20201225142119cs_/https://www.dailyserving.com/wp-content/themes/cameron/style.css" type="text/css" media="screen"/>
<link rel="alternate" type="application/rss+xml" title="DAILY SERVING RSS Feed" href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/feed/"/>
<link rel="pingback" href="https://www.dailyserving.com/xmlrpc.php"/>
<link rel="shortcut icon" href="/15633/20201225142119im_/https://www.dailyserving.com/2016/09/between-declarations-and-dreams-art-of-southeast-asia-since-the-19th-century-at-the-national-gallery-singapore/favicon.ico"/>
<link href="https://wayback.archive-it.org/15633/20201225142119cs_/http://fonts.googleapis.com/css?family=Abel" rel="stylesheet" type="text/css">
<!-- Generated by OpenX 2.8.2-rc25 -->
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201225142119js_/http://d1.openx.org/spcjs.php?id=20651&withtext=1"></script>
<style type="text/css">.cc_form_wrapper_2 { font-size:10px; color:#999999; margin:0 auto; text-align:center; padding:3px; background-color:#ffffcc; border:2px solid #000000; } .cc_style_1 * { font-family:Arial,Helvetica,sans-serif;text-align:center; } .cc_style_1 .cc_widget_title { font-weight: bold; font-size:12px; color:#000000;} .cc_style_1 form { margin-bottom:2px; border-top:2px solid ##000000 } .cc_style_1 .cc_label_email { font-weight: normal; font-family:Arial; font-size:12px; color:#000000; } .cc_style_1 .cc_input_email { font-size:10pt; border:1px solid #999999; text-align:left; } .cc_style_1 .cc_submit {font-family:Verdana,Geneva,Arial,Helvetica,sans-serif; font-size:10pt; } .cc_safesubscribe { text-align:center; margin:0 auto; width:168px; padding-top:5px; } .cc_email_marketing { display:block; text-align:center; margin:0 auto; font-family:Arial,Helvetica,sans-serif;font-size:10px;color:#999999; } .cc_email_marketing a { text-decoration:none;font-family:Arial,Helvetica,sans-serif;font-size:10px;color:#999999; } .cc_widget_container .cc_preface p { margin:0.25em 0; padding:0; } .cc_widget_container .cc_input_email { max-width:95%; } .cc_widget_container .cc_email_image { float:right; margin-right:5px; margin-top:3px; display:block; padding:0; overflow:hidden; } .cc_widget_container .cc_email_image img { background-color: #006699; float:right; } .cc_widget_container .cc_email_image img { border:0; padding:0; margin:0; }</style>
<style type="text/css">.cc_style_3 { width:100%; background-color: #ebebeb; text-align:left; margin:0 auto; height:40px; } .cc_style_3 * { font-family:Verdana,Geneva,Arial,Helvetica,sans-serif; } .cc_style_3 .cc_widget_title { font-weight: bold; font-family:Arial; font-size:16px; color:#006699; display:block; padding-bottom:.2em; } .cc_style_3 form { margin-bottom:3px; } .cc_style_3 .cc_label_email { font-weight: normal; font-family:Arial; font-size:10px; color:#000000; } .cc_style_3 .cc_input_email { font-size:10pt; border:1px solid #999999; font-size:10px; border:1px solid #999999; color: #666666; } .cc_style_3 .cc_submit { font-size:10px; } .cc_safesubscribe { padding-top:5px; } .cc_email_marketing { font-family:Arial,Helvetica,sans-serif;font-size:10px;color:#999999; } .cc_email_marketing a { text-decoration:none;font-family:Arial,Helvetica,sans-serif;font-size:10px;color:#999999; } .cc_widget_container .cc_preface p { margin:0.25em 0; padding:0; } .cc_widget_container .cc_input_email { max-width:95%; } .cc_widget_container .cc_email_image { float:right; margin-right:5px; margin-top:3px; display:block; padding:0; overflow:hidden; } .cc_widget_container .cc_email_image img { background-color: #006699; float:right; } .cc_widget_container .cc_email_image img { border:0; padding:0; margin:0; }</style>
<link rel="stylesheet" id="tabbed-widgets-css" href="https://wayback.archive-it.org/15633/20201225142119cs_/http://www.dailyserving.com/wp-content/plugins/tabbed-widgets/css/tabbed-widgets.css?ver=4.0.13" type="text/css" media="all"/>
<link rel="stylesheet" id="A2A_SHARE_SAVE-css" href="https://wayback.archive-it.org/15633/20201225142119cs_/https://www.dailyserving.com/wp-content/plugins/add-to-any/addtoany.min.css?ver=1.7" type="text/css" media="all"/>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201225142119js_/https://www.dailyserving.com/wp-includes/js/jquery/jquery.js?ver=1.11.1"></script>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201225142119js_/https://www.dailyserving.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1"></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.dailyserving.com/xmlrpc.php?rsd"/>
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.dailyserving.com/wp-includes/wlwmanifest.xml"/>
<link rel="prev" title="Zhang Peili: From Painting to Video at the Australian Centre on China in the World" href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/2016/09/zhang-peili-from-painting-to-video-at-the-australian-centre-on-china-in-the-world/"/>
<link rel="next" title="Kapwani Kiwanga: Ujamaa" href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/2016/09/kapwani-kiwanga-ujamaa/"/>
<meta name="generator" content="WordPress 4.0.13"/>
<link rel="canonical" href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/2016/09/between-declarations-and-dreams-art-of-southeast-asia-since-the-19th-century-at-the-national-gallery-singapore/"/>
<link rel="shortlink" href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/?p=53184"/>
<script type="text/javascript"><!--
var a2a_config=a2a_config||{},wpa2a={done:false,html_done:false,script_ready:false,script_load:function(){var a=document.createElement('script'),s=document.getElementsByTagName('script')[0];a.type='text/javascript';a.async=true;a.src='https://wayback.archive-it.org/15633/20201225142119/https://static.addtoany.com/menu/page.js';s.parentNode.insertBefore(a,s);wpa2a.script_load=function(){};},script_onready:function(){if(a2a.type=='page'){wpa2a.script_ready=true;if(wpa2a.html_done)wpa2a.init();}},init:function(){for(var i=0,el,target,targets=wpa2a.targets,length=targets.length;i<length;i++){el=document.getElementById('wpa2a_'+(i+1));target=targets[i];a2a_config.linkname=target.title;a2a_config.linkurl=target.url;if(el){a2a.init('page',{target:el});el.id='';}wpa2a.done=true;}wpa2a.targets=[];}};a2a_config.tracking_callback=['ready',wpa2a.script_onready];
//--></script>
<!-- This site is powered by Tweet, Like, Plusone and Share Plugin - http://techxt.com/tweet-like-google-1-and-share-plugin-wordpress/ -->
<style type="text/css">div.socialicons{float:left;display:block;margin-right: 10px;line-height: 1;}div.socialiconsv{line-height: 1;}div.socialicons p{margin-bottom: 0px !important;margin-top: 0px !important;padding-bottom: 0px !important;padding-top: 0px !important;}div.social4iv{background: none repeat scroll 0 0 #FFFFFF;border: 1px solid #aaa;border-radius: 3px 3px 3px 3px;box-shadow: 3px 3px 3px #DDDDDD;padding: 3px;position: fixed;text-align: center;top: 55px;width: 68px;display:none;}div.socialiconsv{padding-bottom: 5px;}</style>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201225142119js_/https://platform.twitter.com/widgets.js"></script><script type="text/javascript" src="//wayback.archive-it.org/15633/20201225142119js_/https://connect.facebook.net/en_US/all.js#xfbml=1"></script><script type="text/javascript" src="https://wayback.archive-it.org/15633/20201225142119js_/https://apis.google.com/js/plusone.js"></script><script type="text/javascript" src="https://wayback.archive-it.org/15633/20201225142119js_/https://platform.linkedin.com/in.js"></script><!-- WP Favicon -->
<link rel="shortcut icon" href="https://wayback.archive-it.org/15633/20201225142119im_/https://www.dailyserving.com/favicon.ico" type="image/x-icon"/>
<link rel="icon" href="https://wayback.archive-it.org/15633/20201225142119im_/https://www.dailyserving.com/favicon.gif" type="image/gif"/>
<!-- /WP Favicon -->
<!-- WordPress Facebook Open Graph protocol plugin (WPFBOGP v2.0.13) http://rynoweb.com/wordpress-plugins/ -->
<meta property="fb:admins" content="126582914023877"/>
<meta property="og:url" content="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/2016/09/between-declarations-and-dreams-art-of-southeast-asia-since-the-19th-century-at-the-national-gallery-singapore/"/>
<meta property="og:title" content="Between Declarations and Dreams: Art of Southeast Asia Since the 19th Century at the National Gallery Singapore"/>
<meta property="og:site_name" content="DAILY SERVING"/>
<meta property="og:description" content="In Kevin Kwan’s deliciously trashy best-selling novel, China Rich Girlfriend, a wealthy Singaporean heiress outmaneuvers Chinese billionaires at auction to ac"/>
<meta property="og:type" content="article"/>
<meta property="og:image" content="https://wayback.archive-it.org/15633/20201225142119im_/http://dailyserving.com/wp-content/themes/cameron/images/logo-b-2.jpg"/>
<meta property="og:image" content="/images/national-gallery-singapore/7-Gun.jpg"/>
<meta property="og:image" content="/images/national-gallery-singapore/6-DawnonFarm.jpg"/>
<meta property="og:image" content="/images/national-gallery-singapore/5-Morning.jpg"/>
<meta property="og:image" content="/images/national-gallery-singapore/4-Singers.jpg"/>
<meta property="og:image" content="/images/national-gallery-singapore/3-TonkinWoman.jpg"/>
<meta property="og:image" content="/images/national-gallery-singapore/2-SupremeCourt.jpg"/>
<meta property="og:image" content="/images/national-gallery-singapore/1-NationalGallerySingaporeAtrium.jpg"/>
<meta property="og:image" content="/images/national-gallery-singapore/2-SupremeCourt.jpg"/>
<meta property="og:locale" content="en_us"/>
<!-- // end wpfbogp -->
<!-- Google Ads -->
<script type="text/javascript">
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//wayback.archive-it.org/15633/20201225142119/https://www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script type="text/javascript">
googletag.cmd.push(function() {
googletag.defineSlot('/7705783/DailyServing_fullsite_rsidebar', [300, 250], 'div-gpt-ad-1328250136329-0').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_01', [150, 150], 'div-gpt-ad-1328250136329-1').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_02', [150, 150], 'div-gpt-ad-1328250136329-2').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_03', [150, 150], 'div-gpt-ad-1328250136329-3').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_04', [150, 150], 'div-gpt-ad-1328250136329-4').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_05', [150, 150], 'div-gpt-ad-1328250136329-5').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_06', [150, 150], 'div-gpt-ad-1328250136329-6').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_07', [150, 150], 'div-gpt-ad-1328813817361-7').addService(googletag.pubads());
googletag.defineSlot('/7705783/Tile_08', [150, 150], 'div-gpt-ad-1328813817361-8').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<!-- Header forms script -->
<script language="javascript">
function goLite(FRM,BTN)
{
window.document.forms[FRM].elements[BTN].style.backgroundColor = "#1da9bf";
window.document.forms[FRM].elements[BTN].style.borderColor = "#1da9bf";
}
function goDim(FRM,BTN)
{
window.document.forms[FRM].elements[BTN].style.backgroundColor = "#000033";
window.document.forms[FRM].elements[BTN].style.borderColor = "#000033";
}
</script>
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-15083400-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://wayback.archive-it.org/15633/20201225142119/https://ssl' : 'https://wayback.archive-it.org/15633/20201225142119/http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<!--
FILE ARCHIVED ON 14:21:19 Dec 25, 2020 AND RETRIEVED FROM THE
INTERNET ARCHIVE ON 21:04:19 Apr 05, 2024.
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
SECTION 108(a)(3)).
urlKey(b'com,dailyserving)/2016/09/between-declarations-and-dreams-art-of-southeast-asia-since-the-19th-century-at-the-national-gallery-singapore')
-->
<!-- Facebook JavaScript SDK -->
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: '230929536992105', status: true, cookie: true,
xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//wayback.archive-it.org/15633/20201225142119/https://connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
<!-- End Facebook JavaScript SDK -->
<div id="wrapper">
<div id="header">
<div id="header-serving-image">
<script type="text/javascript">
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
</script>
<div id="wrap-header">
<div id="header-text">
</div>
<!-- Start Header main menu -->
<a href="/15633/20201225142119/https://www.dailyserving.com/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Logo','','/wp-content/uploads/2016/05/logo-b-2-ver2.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/uploads/2016/05/logo-a-2-ver2.jpg" name="Logo" width="930" height="131" border="0" id="Logo"/></a>
<div id="nav">
<body onload="MM_preloadImages('/wp-content/themes/cameron/images/nav/about-b.jpg','/wp-content/themes/cameron/images/nav/contributors-b.jpg','/wp-content/themes/cameron/images/nav/partners-b.jpg','/wp-content/themes/cameron/images/nav/sponsor-b.jpg','/wp-content/themes/cameron/images/nav/submit-b.jpg','/wp-content/themes/cameron/images/nav/facebook-b.jpg','/wp-content/themes/cameron/images/nav/rss-b.jpg','/wp-content/themes/cameron/images/nav/t-b.jpg','/wp-content/themes/cameron/images/nav/twitter-b.jpg')">
<a href="/15633/20201225142119/https://www.dailyserving.com/about/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('About','','/wp-content/themes/cameron/images/nav/about-b.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/about-a.jpg" name="About" border="0" id="About" style="padding-right:5px;"/></a> <a href="/15633/20201225142119/https://www.dailyserving.com/contributors" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('contributors','','/wp-content/themes/cameron/images/nav/contributors-b.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/contributors-a.jpg" name="contributors" border="0" id="contributors" style="padding-right:5px;"/></a> <a href="/15633/20201225142119/https://www.dailyserving.com/partners/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('partners','','/wp-content/themes/cameron/images/nav/partners-b.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/partners-a.jpg" name="partners" border="0" id="partners" style="padding-right:5px;"/></a> <a href="/15633/20201225142119/https://www.dailyserving.com/sponsor-us/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('sponsor','','/wp-content/themes/cameron/images/nav/sponsor-b.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/sponsor-a.jpg" name="sponsor" border="0" id="sponsor" style="padding-right:5px;"/></a> <a href="/15633/20201225142119/https://www.dailyserving.com/submit/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('submit','','/wp-content/themes/cameron/images/nav/submit-b.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/submit-a.jpg" name="submit" border="0" id="submit" style="padding-right:5px;"/></a>
<!-- Start Header social sharing icons-->
<a href="https://wayback.archive-it.org/15633/20201225142119/http://www.facebook.com/pages/Daily-Serving/126582914023877" target="_blank" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('facebook','','/wp-content/themes/cameron/images/nav/facebook-b.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/facebook-a.jpg" name="facebook" border="0" id="facebook" style="padding-left:90px;"/></a> <a href="/15633/20201225142119/https://www.dailyserving.com/feed/" target="_blank" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('rss','','/wp-content/themes/cameron/images/nav/rss-b.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/rss-a.jpg" name="rss" border="0" id="rss"/></a> <a href="https://wayback.archive-it.org/15633/20201225142119/https://twitter.com/DAILYSERVING/" target="_blank" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('twitter','','/wp-content/themes/cameron/images/nav/twitter-b.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/nav/twitter-a.jpg" name="twitter" border="0" id="twitter"/></a>
</div>
<!-- End Header main menu -->
<!-- Start Header sub menu -->
<div id="nav-text">
<a href="/15633/20201225142119/https://www.dailyserving.com/tag/san-francisco/" style="text-decoration:underline; padding-right:13px;">SAN FRANCISCO</a> <a href="/15633/20201225142119/https://www.dailyserving.com/tag/london/" style="text-decoration:underline; padding-right:13px;">LONDON</a> <a href="/15633/20201225142119/https://www.dailyserving.com/tag/new-york-city/" style="text-decoration:underline; padding-right:13px;">NEW YORK</a> <a href="/15633/20201225142119/https://www.dailyserving.com/tag/berlin/" style="text-decoration:underline; padding-right:13px;">BERLIN</a> <a href="/15633/20201225142119/https://www.dailyserving.com/tag/los-angeles/" style="text-decoration:underline; padding-right:13px;">LOS ANGELES</a> <a href="/15633/20201225142119/https://www.dailyserving.com/tag/singapore/" style="text-decoration:underline; padding-right:13px;">SINGAPORE</a> <a href="/15633/20201225142119/https://www.dailyserving.com/tag/chicago/" style="text-decoration:underline; padding-right:13px;">CHICAGO</a> <a href="/15633/20201225142119/https://www.dailyserving.com/tag/amsterdam/" style="text-decoration:underline; padding-right:13px;">AMSTERDAM</a> <a href="/15633/20201225142119/https://www.dailyserving.com/tag/perth/" style="text-decoration:underline; padding-right:13px;">PERTH</a> <a href="/15633/20201225142119/https://www.dailyserving.com/tag/denver/" style="text-decoration:underline; padding-right:13px;">DENVER</a>
<ul id="css3menu1" class="topmenu">
<li class="toplast"><a href="/15633/20201225142119/https://www.dailyserving.com/tag/elsewhere/" style="height:14px;line-height:16px;"><span>ELSEWHERE</span></a>
<ul>
<li><a href="/15633/20201225142119/https://www.dailyserving.com/tag/paris/">Paris</a></li>
<li><a href="/15633/20201225142119/https://www.dailyserving.com/tag/boston/">Boston</a></li>
<li><a href="/15633/20201225142119/https://www.dailyserving.com/tag/portland/">Portland</a></li>
<li><a href="/15633/20201225142119/https://www.dailyserving.com/tag/sao-paulo/">São Paulo</a></li>
<li><a href="/15633/20201225142119/https://www.dailyserving.com/tag/toronto/">Toronto</a></li>
<li><a href="/15633/20201225142119/https://www.dailyserving.com/tag/beijing/">Beijing</a></li>
<li><a href="/15633/20201225142119/https://www.dailyserving.com/tag/shanghai/">Shanghai</a></li>
<li><a href="/15633/20201225142119/https://www.dailyserving.com/tag/sydney/">Sydney</a></li>
</ul></li>
</ul>
</div>
<!-- End Header sub menu -->
<div class="hr1" style="margin-top:25px;"><!-- <hr /> --> </div>
</div>
</div>
<div id="topnavcontainer">
<div id="navcontainer">
<ul id="navlist">
<li><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/">Home</a></li>
<li class="page_item page-item-1056"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/about/">About Us</a></li>
<li class="page_item page-item-1058"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/contributors/">Contributors</a></li>
<li class="page_item page-item-23299"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/contributors-test/">Contributors test</a></li>
<li class="page_item page-item-23029"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/partners/">Partners</a></li>
<li class="page_item page-item-1073"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/sponsor-us/">Sponsor Us</a></li>
<li class="page_item page-item-1070"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/store/">Store</a></li>
<li class="page_item page-item-1057"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/submit/">Submit</a></li>
</ul>
</div>
<div id="divSearchForm">
<form method="get" id="searchform" action="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/">
<div>
<input type="hidden" value="1" id="IncludeBlogs" name="IncludeBlogs"/>
<input type="text" name="s" class="txt" value="Search Keywords" onfocus="document.forms['searchform'].s.value='';" onblur="if (document.forms['searchform'].s.value == '') document.forms['searchform'].s.value='Search Keywords';"/>
<input src="https://wayback.archive-it.org/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/search.gif" alt="Submit" value="Search" id="searchsubmit" type="image">
</div>
</form>
</div>
</div>
</div>
<!-- end #header -->
<div id="container">
<div id="content">
<div class="post">
<h4 class="pagetitle" style="padding-right:10px;">
Singapore</h4>
<div class="postmetadata" style="padding-top:10px;">
<li>September 21, 2016 Written by <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/author/jing-cao/" title="Posts by Jing Cao" rel="author">Jing Cao</a></li>
</div>
<h2><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/2016/09/between-declarations-and-dreams-art-of-southeast-asia-since-the-19th-century-at-the-national-gallery-singapore/" rel="bookmark">Between Declarations and Dreams: Art of Southeast Asia Since the 19th Century at the National Gallery Singapore</a></h2>
<!-- <div class="hr2"></div> -->
<div class="entry">
<p>In Kevin Kwan’s deliciously trashy best-selling novel, <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.amazon.com/China-Rich-Girlfriend-Kevin-Kwan/dp/0385539088" target="_blank"><em>China Rich Girlfriend</em></a>, a wealthy Singaporean heiress outmaneuvers Chinese billionaires at auction to acquire works for the soon-to-open National Gallery. The real <a href="https://wayback.archive-it.org/15633/20201225142119/http://nationalgallery.sg/" target="_blank">National Gallery Singapore</a> opened to the public in November 2015, and as Kwan’s novel suggests, the museum was strategic in its acquisitions. By choosing to direct its considerable resources toward the relatively undervalued field of Southeast Asian art, the National Gallery Singapore has created an encyclopedic collection that will define the region’s art history for generations to come, as <a href="https://wayback.archive-it.org/15633/20201225142119/http://moma.org/" target="_blank">MoMA</a> did for modernism or the <a href="https://wayback.archive-it.org/15633/20201225142119/http://whitney.org/" target="_blank">Whitney Museum for American Art</a>.</p>
<div id="attachment_53187" style="width: 610px" class="wp-caption aligncenter"><a href="/15633/20201225142119/https://www.dailyserving.com/wp-content/uploads/2016/09/1-NationalGallerySingaporeAtrium.jpg"><img class="size-full wp-image-53187" src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/uploads/2016/09/1-NationalGallerySingaporeAtrium.jpg" alt="Atrium of National Gallery Singapore. Courtesy of National Gallery Singapore." width="600" height="399"/></a><p class="wp-caption-text">Atrium of National Gallery Singapore. Courtesy of National Gallery Singapore.</p></div>
<p>Housed in Singapore’s beautifully restored City Hall and Supreme Court buildings, and connected through a network of bridges spanning an open atrium, the National Gallery’s two permanent exhibitions reveal its epistemic ambitions. <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.nationalgallery.sg/see-do/programme-detail/36/siapa-nama-kamu-art-in-singapore-since-the-19th-century" target="_blank"><em>Siapa Nama Kamu?: Art in Singapore Since the 19th Century</em></a> establishes the city–state’s official art history, while <em><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.nationalgallery.sg/see-do/programme-detail/37/between-declarations-and-dreams-art-of-southeast-asia-since-the-19th-century" target="_blank">Between Declarations and Dreams:</a> Art of Southeast Asia Since the 19th Century</em> seeks not only to define a regional narrative, but also to insert that narrative into a global art history that is currently dominated by the West.</p>
<p><span id="more-53184"></span></p>
<div id="attachment_53188" style="width: 610px" class="wp-caption aligncenter"><a href="/15633/20201225142119/https://www.dailyserving.com/wp-content/uploads/2016/09/2-SupremeCourt.jpg"><img class="size-full wp-image-53188" src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/uploads/2016/09/2-SupremeCourt.jpg" alt="Exhibition View of Between Declarations and Dreams: Art of Southeast Asia since the 19th Century in Singapore’s restored Supreme Court Building. Courtesy of National Gallery Singapore." width="600" height="400"/></a><p class="wp-caption-text">Exhibition View of <i>Between Declarations and Dreams: Art of Southeast Asia Since the 19th Century</i> in Singapore’s restored Supreme Court Building. Courtesy of National Gallery Singapore.</p></div>
<p>Organized into four loosely chronological categories—19th century colonialism, early 20th century nationalism, 1950s–70s revolution, and post-1970s postmodernism—<em>Between Declarations and Dreams</em> collapses complex national histories into a compact regional narrative.</p>
<p>In the first section, rich wooden interiors provide a fitting background for 19th century colonial art. Photographs of <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.nationalgallery.sg/artworks/artwork-detail/2010-00666/european-men-at-attap-house-in-jungle" target="_blank">European men in the jungle</a>, two monumental paintings by the Dutch-trained Indonesian Romantic painter <a href="https://wayback.archive-it.org/15633/20201225142119/https://en.wikipedia.org/wiki/Raden_Saleh%20" target="_blank">Raden Saleh</a>, and a portrait of a Tonkin woman by French Impressionist Victor Tardieu hint at the complicated flows of images and ideas between Europe and its colonies.</p>
<div id="attachment_53189" style="width: 610px" class="wp-caption aligncenter"><a href="/15633/20201225142119/https://www.dailyserving.com/wp-content/uploads/2016/09/3-TonkinWoman.jpg"><img class="size-full wp-image-53189" src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/uploads/2016/09/3-TonkinWoman.jpg" alt="Victor Tardieu (b. 1870, France; d. 1937, Vietnam) La Tonkinoise au Panier (Tonkin Woman with a Basket), 1923; Oil on canvas; 108 x 80 cm. Courtesy of National Gallery Singapore." width="600" height="846"/></a><p class="wp-caption-text">Victor Tardieu. <i>La Tonkinoise au Panier</i> (<em>Tonkin Woman with a Basket</em>), 1923; oil on canvas; 108 x 80 cm. Courtesy of National Gallery Singapore.</p></div>
<div id="attachment_53190" style="width: 610px" class="wp-caption aligncenter"><a href="/15633/20201225142119/https://www.dailyserving.com/wp-content/uploads/2016/09/4-Singers.jpg"><img class="size-full wp-image-53190" src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/uploads/2016/09/4-Singers.jpg" alt="Nguyen Phan Chanh (b. 1892, Vietnam; d. 1984, Vietnam), The Singers in the Countryside, 1932; Watercolor and ink on silk; 65.4 x 49.4 cm. Courtesy of National Gallery Singapore." width="600" height="802"/></a><p class="wp-caption-text">Nguyen Phan Chanh. <i>The Singers in the Countryside</i>, 1932; watercolor and ink on silk; 65.4 x 49.4 cm. Courtesy of National Gallery Singapore.</p></div>
<p>Like <a href="https://wayback.archive-it.org/15633/20201225142119/http://www.metmuseum.org/toah/hd/gaug/hd_gaug.htm" target="_blank">Gauguin in Tahiti</a>, Tardieu’s <em>Tonkin Woman</em> reminds viewers that Western “modernity,” in both art and history, was built on a legacy of colonialism. Yet its juxtaposition with <em>The Singers in the Countryside</em>, a radically experimental work by Tardieu’s student Nguyen Phan Chanh, reminds viewers that this transformation cuts both ways. As Tardieu’s oil paintings grew bolder and more expressive in Hanoi, Nguyen Phan Chanh used what he learned at the l’Ecole des Beaux-Arts Indochine to push ink and silk painting in new directions.</p>
<div id="attachment_53191" style="width: 610px" class="wp-caption aligncenter"><a href="/15633/20201225142119/https://www.dailyserving.com/wp-content/uploads/2016/09/5-Morning.jpg"><img class="size-full wp-image-53191" src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/uploads/2016/09/5-Morning.jpg" alt="Chuah Thean Teng (蔡天定) (b. 1914, China; d. 2008, Malaysia), Morning, c. 1960 – 1963; Batik on cloth; 112 x 173 cm. Courtesy of National Gallery Singapore." width="600" height="356"/></a><p class="wp-caption-text">Chuah Thean Teng (蔡天定). <i>Morning</i>, c. 1960–1963; batik on cloth; 112 x 173 cm. Courtesy of National Gallery Singapore.</p></div>
<p>In the 1960s, Chuah Thean Teng made a similar breakthrough using batik, a traditional method for dyeing fabric, in his weavings of iconic scenes of Indonesian village life. And as Communist ideology swept through Southeast Asia in the mid-20th century, Nguyen Duc Nung combined the working-class heroes of Social Realism with lacquer techniques to portray a shining new future.</p>
<div id="attachment_53192" style="width: 610px" class="wp-caption aligncenter"><a href="/15633/20201225142119/https://www.dailyserving.com/wp-content/uploads/2016/09/6-DawnonFarm.jpg"><img class="size-full wp-image-53192" src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/uploads/2016/09/6-DawnonFarm.jpg" alt="Nguyen Duc Nung (b. 1909, Vietnam; d. 1983, Vietnam). Binh minh tren song trang (Dawn on a Farm), 1958; Lacquer on board; 63 x 91.2 cm; Collection of Vietnam Fine Arts Museum. Courtesy of National Gallery Singapore." width="600" height="356"/></a><p class="wp-caption-text">Nguyen Duc Nung (b. 1909, Vietnam; d. 1983, Vietnam). <i>Binh minh tren song trang</i> (Dawn on a Farm), 1958; Lacquer on board; 63 x 91.2 cm; Collection of Vietnam Fine Arts Museum. Courtesy of National Gallery Singapore.</p></div>
<p>In the 1970s, as optimism gave way to authoritarian strongmen from Indonesia to the Philippines, and the Vietnam War ravaged the Southeast Asian peninsula, violence dominated art. Pratuang Emjaroen’s painting <em>Red Morning Glory and Rotten Gun</em> casts Thailand’s tumultuous political climate as a surrealist nightmare. Indonesia’s FX Harsono appropriated the idea of found art and placed a plastic rifle in a wooden crate in <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.nationalgallery.sg/artworks/artwork-detail/2011-02250/paling-top-top-most" target="_blank"><em>Paling Top</em></a>.</p>
<div id="attachment_53193" style="width: 610px" class="wp-caption aligncenter"><a href="/15633/20201225142119/https://www.dailyserving.com/wp-content/uploads/2016/09/7-Gun.jpg"><img class="size-full wp-image-53193" src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/uploads/2016/09/7-Gun.jpg" alt="Pratuang Emjaroen (b. 1935, Thailand). Red Morning Glory and Rotten Gun, 1976; Oil on Canvas. Collection of National Gallery Singapore." width="600" height="356"/></a><p class="wp-caption-text">Pratuang Emjaroen. <i>Red Morning Glory and Rotten Gun</i>, 1976; oil on Canvas. Collection of National Gallery Singapore.</p></div>
<p>As the 20th century stretched on, artists across Southeast Asia became increasingly cognizant of how geopolitical power relations are reflected in the art world. Artists’ movements like <a href="https://wayback.archive-it.org/15633/20201225142119/https://contempartnow.wordpress.com/about/" target="_blank">Gerakan Seni Rupa Baru (New Art Movement)</a> in Indonesia and <a href="https://wayback.archive-it.org/15633/20201225142119/http://www.afterall.org/journal/issue.34/social-realism-the-turns-of-a-term-in-the-philippines" target="_blank">the Kaisahan (solidarity) collective</a> in the Philippines learned to strategically position themselves and push back within a larger framework of globalization. Their works mock Abstract Expressionism as one of America’s most successful exports and challenge the conventions of the local art establishment. The galleries devoted to these movements are some of the best in the exhibition, focusing on specific exhibitions, such as Indonesia’s <a href="https://wayback.archive-it.org/15633/20201225142119/http://www.mori.art.museum/english/contents/mamproject/mamresearch/003.html" target="_blank" data-saferedirecturl="https://www.google.com/url?hl=en&q=http://www.mori.art.museum/english/contents/mamproject/mamresearch/003.html&source=gmail&ust=1474473332747000&usg=AFQjCNHefpoclutMfl1CrDKvmUyJ49qJqQ"><i>Fantasy World Supermarket</i></a><a> (1987)</a>, instead of sweeping national histories.</p>
<p>The National Gallery Singapore has been <a href="https://wayback.archive-it.org/15633/20201225142119/http://hyperallergic.com/271919/singapores-new-national-gallery-dubiously-rewrites-southeast-asian-art-history/" target="_blank">criticized</a> for not providing enough <a href="https://wayback.archive-it.org/15633/20201225142119/http://www.aaa.org.hk/Diaaalogue/Details/1057" target="_blank">context</a> for its works. Yet the National Gallery’s high-profile international collaborations—<a href="https://wayback.archive-it.org/15633/20201225142119/https://www.nationalgallery.sg/see-do/highlights/reframing-modernism" target="_blank"><em>Reframing Modernism</em></a> with the <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.centrepompidou.fr/en" target="_blank">Centre Pompidou</a> (Paris), and <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.nationalgallery.sg/see-do/highlights/artist-and-empire" target="_blank"><em>Artist and Empire</em></a> with <a href="https://wayback.archive-it.org/15633/20201225142119/http://www.tate.org.uk/" target="_blank">Tate Britain</a> (London)—suggest that the museum’s curators are keenly aware of context. By continually positioning its collection within European settings, the National Gallery, like the artists that it features, aims to reshape a global narrative of art history. The hope is that in its rush to challenge Western art history, it will not have glossed over its own.</p>
<p>Between Declarations and Dreams: Art of Southeast Asia Since the 19th Century<em> will be on view through June 10, 2020.</em></p>
</div>
</div>
<div class="hr1"><!-- <hr /> --></div>
<div style="padding-bottom:0px; width:250px; float:left;">
<div class="a2a_kit a2a_kit_size_32 addtoany_list a2a_target" id="wpa2a_1"><a class="a2a_dd addtoany_share_save" href="https://wayback.archive-it.org/15633/20201225142119/https://www.addtoany.com/share_save"><img src="https://wayback.archive-it.org/15633/20201225142119im_/http://www.dailyserving.com/wp-content/themes/cameron/images/share-button.jpg" alt="Share"/></a>
<script type="text/javascript"><!--
wpa2a.script_load();
//--></script>
</div>
<div id="twitter" style="position:relative; float:left; width:86px; padding-left:0px;">
<a href="https://wayback.archive-it.org/15633/20201225142119/https://twitter.com/share" class="twitter-share-button" data-via="DAILYSERVING" data-related="DAILYSERVING">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//wayback.archive-it.org/15633/20201225142119/https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> </div>
</div>
<div class="postmetadatafooter" style="float:right; clear:none; width:300px;">
<li style="list-style-type: none; list-style-position:inside; clear: both; padding:0; margin-left:100px; float:right; text-align:right;"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/2016/09/between-declarations-and-dreams-art-of-southeast-asia-since-the-19th-century-at-the-national-gallery-singapore/">permalink</a></li>
<li style="list-style-type: none; list-style-position:inside; clear: both; padding:0; margin-left:100px; float:right; text-align:right;">Tags: <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/tag/batik/" rel="tag">batik</a>, <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/tag/between-declarations-and-dreams/" rel="tag">Between Declarations and Dreams</a>, <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/tag/modernism/" rel="tag">modernism</a>, <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/tag/siapa-nama-kamu-art-in-singapore-since-the-19th-century/" rel="tag">Siapa Nama Kamu? Art in Singapore since the 19th Century</a>, <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/tag/silk-painting/" rel="tag">silk painting</a>, <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/tag/singapore/" rel="tag">Singapore</a>, <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/tag/social-realism/" rel="tag">Social Realism</a>, <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/tag/southeast-asian-art/" rel="tag">Southeast Asian Art</a>, <a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/tag/the-national-gallery-singapore/" rel="tag">The National Gallery Singapore</a></li>
</div>
<!-- You can start editing here. -->
</div><!-- end #content -->
<div id="sidebar-container">
<div id="sidebar320-ads">
<!-- DailyServing_fullsite_rsidebar -->
</div>
<div id="sidebar">
<div id="text-8" class="widget widget_text"><h2>Join Our Mailing List</h2> <div class="textwidget">Enter your email:
<!--Begin CTCT Sign-Up Form-->
<!-- EFD 1.0.0 [Fri Oct 28 14:40:56 EDT 2016] -->
<link rel="stylesheet" type="text/css" href="https://wayback.archive-it.org/15633/20201225142119cs_/https://static.ctctcdn.com/h/contacts-embedded-signup-assets/1.0.2/css/signup-form.css">
<div class="ctct-embed-signup" style="font: 1rem/1.5 Helvetica Neue, Arial, sans-serif; font-size-adjust: none; font-stretch: normal; -webkit-font-smoothing: antialiased;">
<div style="border-radius: 5px; color: rgb(91, 91, 91);">
<span id="success_message" style="display: none;">
<div style="text-align: center;">Thanks for signing up!</div>
</span>
<form name="embedded_signup" class="ctct-custom-form Form" action="https://wayback.archive-it.org/15633/20201225142119/https://visitor2.constantcontact.com/api/signup" method="POST" data-id="embedded_signup:form" style="min-width:300px;">
<!-- The following code must be included to ensure your sign-up form works properly. -->
<input name="ca" type="hidden" value="4eaebd26-9180-46f3-aaef-fc0c8055e209" data-id="ca:input">
<input name="list" type="hidden" value="2111392802" data-id="list:input">
<input name="source" type="hidden" value="EFD" data-id="source:input">
<input name="required" type="hidden" value="list,email" data-id="required:input">
<input name="url" type="hidden" value="" data-id="url:input">
<p data-id="Email Address:p" style="margin-bottom:10px;"><input name="email" type="text" maxlength="60" value="" data-id="Email Address:input" style="padding: 5px;"></p>
<button class="Button ctct-button Button--block Button-secondary" type="submit" data-enabled="enabled" style="padding: 5px; margin-bottom:10px;">Sign Up</button>
</form>
</div>
</div>
<script type="text/javascript">
var localizedErrMap = {};
localizedErrMap['required'] = 'This field is required.';
localizedErrMap['ca'] = 'An unexpected error occurred while attempting to send email.';
localizedErrMap['email'] = 'Please enter your email address in [email protected] format.';
localizedErrMap['generic'] = 'This field is invalid.';
localizedErrMap['shared'] = 'Sorry, we could not complete your sign-up. Please contact us to resolve this.';
var postURL = 'https://wayback.archive-it.org/15633/20201225142119/https://visitor2.constantcontact.com/api/signup';
</script>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201225142119js_/https://static.ctctcdn.com/h/contacts-embedded-signup-assets/1.0.2/js/signup-form.js"></script>
<!--End CTCT Sign-Up Form--></div>
</div><div id="text-9" class="widget widget_text"> <div class="textwidget"><div id="div-gpt-ad-1328250136329-0" style="width:300px; height:250px;">
<script type="text/javascript">
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1328250136329-0'); });
</script>
</div>
</div>
</div><div id="text-5" class="widget widget_text"> <div class="textwidget"><!-- Tile_05 -->
<div id="div-gpt-ad-1328250136329-5" style="width:150px; height:150px; float:left; padding-top:10px; padding-bottom:10px;">
<script type="text/javascript">
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1328250136329-5'); });
</script>
</div>
<!-- Tile_06 -->
<div id="div-gpt-ad-1328250136329-6" style="width:150px; height:150px; float:right; padding-top:10px; padding-bottom:10px;">
<script type="text/javascript">
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1328250136329-6'); });
</script>
</div></div>
</div><div id="text-6" class="widget widget_text"> <div class="textwidget"><!-- Tile_07 -->
<div id="div-gpt-ad-1328813817361-7" style="width:150px; height:150px; float:left; padding-top:10px; padding-bottom:20px;">
<script type="text/javascript">
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1328813817361-7'); });
</script>
</div>
<!-- Tile_08 -->
<div id="div-gpt-ad-1328813817361-8" style="width:150px; height:150px;float:right; padding-top:10px; padding-bottom:20px;">
<script type="text/javascript">
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1328813817361-8'); });
</script>
</div></div>
</div><div id="text-4" class="widget widget_text"> <div class="textwidget">
</div>
</div><div id="text-3" class="widget widget_text"> <div class="textwidget">
</div>
</div><div id="search-2" class="widget widget_search"><form method="get" id="searchform" action="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/" style="padding-top:15px; padding-bottom:20px;">
<input type="text" value="Search DailyServing" onfocus="if (this.value == 'Search DailyServing') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search DailyServing';}" name="s" id="s" style="background: #fff; border: 1px solid #999; height:20px; width:254px; color:#adadad; padding-left:10px;"/>
<input name="image" type="image" onmouseover="this.src='/wp-content/themes/cameron/images/go-b.png'" onmouseout="this.src='/wp-content/themes/cameron/images/go-a.png'" value="Go" src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/go-a.png" alt="Go!" width="36" height="22">
</form>
</div><div id="text-2" class="widget widget_text"><h2>SERIES</h2> <div class="textwidget"> <body onload="MM_preloadImages('/wp-content/themes/cameron/images/series/help-b.jpg','/wp-content/themes/cameron/images/series/hash-b.jpg','/wp-content/themes/cameron/images/series/fan-b.jpg','/wp-content/themes/cameron/images/series/inter-b.jpg','/wp-content/uploads/2013/04/LA-b-2.jpg')">
<p><a href="/15633/20201225142119/https://www.dailyserving.com/tag/help-desk/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Help Desk','','/wp-content/themes/cameron/images/series/help-b.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/series/help-a.jpg" name="Help Desk" border="0" id="Help Desk"/></a>
<a href="/15633/20201225142119/https://www.dailyserving.com/tag/hashtags/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('#hashtags','','/wp-content/themes/cameron/images/series/hash-b.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/series/hash-a.jpg" name="#hashtags" border="0" id="#hashtags"/></a>
<a href="/15633/20201225142119/https://www.dailyserving.com/tag/fan-mail/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Fan Mail','','/wp-content/themes/cameron/images/series/fan-b.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/series/fan-a.jpg" name="Fan Mail" border="0" id="Fan Mail"/></a>
<a href="/15633/20201225142119/https://www.dailyserving.com/category/interviews/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Interviews','','/wp-content/themes/cameron/images/series/inter-b.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/themes/cameron/images/series/inter-a.jpg" name="Interviews" border="0" id="Interviews"/></a>
<a href="/15633/20201225142119/https://www.dailyserving.com/category/l-a-expanded-column/" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('LA Expanded','','/wp-content/uploads/2013/04/LA-b-2.jpg',1)"><img src="/15633/20201225142119im_/https://www.dailyserving.com/wp-content/uploads/2013/04/LA-a-2.jpg" name="LA Expanded" border="0" id="LA Expanded"/></a></div>
</div><div id="tabbed-widget-5" class="widget tabbed-widget"><div class="tw-accordion"><div id="tw-content-5-0" class="tw-content"><span style="display:none;">Categories</span><h4 id="tw-title-5-0" class="tw-title">Categories</h4> <ul>
<li class="cat-item cat-item-1"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/articles/">Articles</a>
</li>
<li class="cat-item cat-item-5"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/artist-videos/">Artist Videos</a>
</li>
<li class="cat-item cat-item-70"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/book/">Book</a>
</li>
<li class="cat-item cat-item-6"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/collage/">Collage</a>
</li>
<li class="cat-item cat-item-7"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/conceptual/">Conceptual</a>
</li>
<li class="cat-item cat-item-8"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/conference/">Conference</a>
</li>
<li class="cat-item cat-item-119"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/craft/">Craft</a>
</li>
<li class="cat-item cat-item-9"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/curator/">Curator</a>
</li>
<li class="cat-item cat-item-10"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/design/">Design</a>
</li>
<li class="cat-item cat-item-11"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/digital-media/">Digital Media</a>
</li>
<li class="cat-item cat-item-12"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/drawing/">Drawing</a>
</li>
<li class="cat-item cat-item-15"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/fashion/">Fashion</a>
</li>
<li class="cat-item cat-item-16"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/fiber-arts/">Fiber Arts</a>
</li>
<li class="cat-item cat-item-17"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/illustration/">Illustration</a>
</li>
<li class="cat-item cat-item-18"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/installation/">Installation</a>
</li>
<li class="cat-item cat-item-19"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/interviews/">Interviews</a>
</li>
<li class="cat-item cat-item-20"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/mixed-media/">Mixed Media</a>
</li>
<li class="cat-item cat-item-22"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/new-media/">New Media</a>
</li>
<li class="cat-item cat-item-23"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/painting/">Painting</a>
</li>
<li class="cat-item cat-item-24"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/performance/">Performance</a>
</li>
<li class="cat-item cat-item-25"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/photography/">Photography</a>
</li>
<li class="cat-item cat-item-26"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/print/">Print</a>
</li>
<li class="cat-item cat-item-27"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/reviews/">Reviews</a>
</li>
<li class="cat-item cat-item-28"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/sculpture/">Sculpture</a>
</li>
<li class="cat-item cat-item-3894"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/social-practice-2/">Social Practice</a>
</li>
<li class="cat-item cat-item-29"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/sound-art/">Sound Art</a>
</li>
<li class="cat-item cat-item-30"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/street-art-public-art/">Street Art / Public Art</a>
</li>
<li class="cat-item cat-item-31"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/text/">Text</a>
</li>
<li class="cat-item cat-item-32"><a href="https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/category/video-film/">Video / Film</a>
</li>
</ul>
</div></div></div>
</div>
</div><!-- end #sidebars -->
</div><!-- end #container -->
<div id="footer">
<!-- #base tags commented for footer stuff, see footer.php.bk -->
<ul id="#footer-content">
<li>Copyright 2006-2016 DailyServing.com. All rights reserved. Site by <a href="https://wayback.archive-it.org/15633/20201225142119/http://somethingintheuniverse.com/">Something in the Universe</a></li>
</ul>
</div>
</div><!-- end #wrapper -->
<script type="text/javascript"><!--
wpa2a.targets=[
{title:'Between Declarations and Dreams: Art of Southeast Asia Since the 19th Century at the National Gallery Singapore',url:'https://wayback.archive-it.org/15633/20201225142119/https://www.dailyserving.com/2016/09/between-declarations-and-dreams-art-of-southeast-asia-since-the-19th-century-at-the-national-gallery-singapore/'}];
wpa2a.html_done=true;if(wpa2a.script_ready&&!wpa2a.done)wpa2a.init();wpa2a.script_load();
//--></script>
<script type="text/javascript">var $rotateoptions = new Array();
$rotateoptions[2] = new Array();
$rotateoptions[2]["style"] = "";
$rotateoptions[2]["rotate"] = 0;
$rotateoptions[2]["random_start"] = 0;
$rotateoptions[2]["start_tab"] = 0;
$rotateoptions[2]["interval"] = 10000;
$rotateoptions[5] = new Array();
$rotateoptions[5]["style"] = "accordion";
$rotateoptions[5]["rotate"] = 0;
$rotateoptions[5]["random_start"] = 0;
$rotateoptions[5]["start_tab"] = 0;
$rotateoptions[5]["interval"] = 10000;
</script>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201225142119js_/http://www.dailyserving.com/wp-content/plugins/tabbed-widgets/js/init-plugin.js"></script>
<!-- Constant Contact Widget by Katz Web Services, Inc. | http://www.seodenver.com/constant-contact-wordpress-widget/ -->
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201225142119js_/https://www.dailyserving.com/wp-includes/js/jquery/ui/jquery.ui.core.min.js?ver=1.10.4"></script>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201225142119js_/https://www.dailyserving.com/wp-includes/js/jquery/ui/jquery.ui.widget.min.js?ver=1.10.4"></script>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201225142119js_/https://www.dailyserving.com/wp-includes/js/jquery/ui/jquery.ui.accordion.min.js?ver=1.10.4"></script>
<script type="text/javascript" src="https://wayback.archive-it.org/15633/20201225142119js_/http://www.dailyserving.com/wp-content/plugins/tabbed-widgets/js/jquery-cookie.min.js?ver=4.0.13"></script>
<div id="fb-root"></div>
<script type="text/javascript">;(function(){try{var e,d=document;e=d.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','https://wayback.archive-it.org/15633/20201225142119/http://www.kapsul.org/bookmarklet/dailyserving?v=3');d.body.appendChild(e);}catch(ex){}})();</script>
</body>
</html>
<!--
FILE ARCHIVED ON 14:21:19 Dec 25, 2020 AND RETRIEVED FROM THE
INTERNET ARCHIVE ON 21:04:19 Apr 05, 2024.
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
SECTION 108(a)(3)).
-->
<!--
playback timings (ms):
RulesEngine.query: 1194.453
PetaboxLoader3.resolve: 38.552
PetaboxLoader3.datanode: 17.208
-->