-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresearch_old_Duke-NUS.html
More file actions
1034 lines (810 loc) · 47.5 KB
/
research_old_Duke-NUS.html
File metadata and controls
1034 lines (810 loc) · 47.5 KB
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
<!-- === BEGIN HEADER === -->
<!DOCTYPE html>
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!--> <html lang="en"> <!--<![endif]-->
<head>
<!-- Title -->
<title>Welcome to HZLab</title>
<!-- Meta -->
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<!-- Favicon -->
<link href="favicon.html" rel="shortcut icon">
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="assets/css/bootstrap.css" rel="stylesheet">
<!-- Template CSS -->
<link rel="stylesheet" href="assets/css/animate.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/nexus.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/responsive.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css" rel="stylesheet">
<!-- Google Fonts-->
<link href="http://fonts.googleapis.com/css?family=Lato:400,300" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300" rel="stylesheet" type="text/css">
</head>
<body>
<div id="pre_header" class="visible-lg"></div>
<div id="header" class="container">
<!--div class="row">
<!-Logo -->
<div class="col-md-12 margin-top-30">
<div class="logo">
<a href="index.html" title="">
<img src="assets/img/logo29.png" alt="Logo" align="left" />
</a>
</div>
</div>
<!-- End Logo -->
<!-- Top Menu -->
<div class="col-md-12 margin-top-30">
<div id="hornav" class="pull-right visible-lg">
<ul class="nav navbar-nav">
<li><a href="index.html"><b>Home</b></a></li>
<li><span><a href="members.html"><b>People</b></a></span>
<ul>
<li><a href="members.html"><b>Principal Investigator</b></a></li>
<li><a href="postdocs.html"><b>Postdoctoral Fellows</b></a></li>
<li><a href="assistants.html"><b>Research Assistants</b></a></li>
<li><a href="students.html"><b>PhD Students</b></a></li>
<li><a href="Alumni.html"><b>Alumni</b></a></li>
</ul>
<!--ul>
<li class="parent"><span>Typography</span>
<ul>
<li><a href="features-typo-basic.html">Basic Typography</a></li>
<li><a href="features-typo-blockquotes.html">Blockquotes</a></li>
</ul>
</li>
<li class="parent"><span>Components</span>
<ul>
<li><a href="features-labels.html">Labels</a></li>
<li><a href="features-progress-bars.html">Progress Bars</a></li>
<li><a href="features-panels.html">Panels</a></li>
<li><a href="features-pagination.html">Pagination</a></li>
</ul>
</li>
<li class="parent"><span>Icons</span>
<ul>
<li><a href="features-icons.html">Icons General</a></li>
<li><a href="features-icons-social.html">Social Icons</a></li>
<li><a href="features-icons-font-awesome.html">Font Awesome</a></li>
<li><a href="features-icons-glyphicons.html">Glyphicons</a></li>
</ul>
</li>
<li><a href="features-testimonials.html">Testimonials</a></li>
<li><a href="features-accordions-tabs.html">Accordions & Tabs</a></li>
<li><a href="features-buttons.html">Buttons</a></li>
<li><a href="features-carousels.html">Carousels</a></li>
<li><a href="features-grid.html">Grid System</a></li>
<li><a href="features-animate-on-scroll.html">Animate On Scroll</a></li>
</ul-->
</li>
<li><span><a href="publications.html"><b>Publications</b></a></span>
<!--ul>
<li><a href="pages-about-us.html">About Us</a></li>
<li><a href="pages-services.html">Services</a></li>
<li><a href="pages-faq.html">F.A.Q.</a></li>
<li><a href="pages-about-me.html">About Me</a></li>
<li><a href="pages-full-width.html">Full Width</a></li>
<li><a href="pages-left-sidebar.html">Left Sidebar</a></li>
<li><a href="pages-right-sidebar.html">Right Sidebar</a></li>
<li><a href="pages-login.html">Login</a></li>
<li><a href="pages-sign-up.html">Sign-Up</a></li>
<li><a href="pages-404.html">404 Error Page</a></li>
</ul-->
</li>
<li><span><a href="research.html"><b>Research</b></a></span>
<!--ul>
<li><a href="portfolio-2-column.html">2 Column</a></li>
<li><a href="portfolio-3-column.html">3 Column</a></li>
<li><a href="portfolio-4-column.html">4 Column</a></li>
<li><a href="portfolio-6-column.html">6 Column</a></li>
</ul-->
</li>
<!--li><span><a href="resources.html"></a>Resources</span>
<!ul>
<li><a href="blog-list.html">Blog</a></li>
<li><a href="blog-single.html">Blog Single Item</a></li>
</ul>
</li -->
<li><span><a href="volunteers.html"><b>Volunteers</b></a></span>
</li>
<li>
<span>
<a href="career.html"><b>Career</b></a>
</span>
</li>
<li><a href="contact.html"><b>Contact</b></a></li>
</ul> </div>
<div class="clear"></div>
<!-- End Top Menu -->
</div>
</div>
<!-- === END HEADER === -->
<div id="content" class="container">
<!-- === BEGIN CONTENT === -->
<div class="row margin-vert-30">
<!-- Main Column -->
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" style="text-align: center;"><b> Research Interests </b></h3>
</div>
<div class="panel-body">
<p>Our current research interests include:</p>
<ul style="margin-left: 40px, list-style-type:square" >
<li>Detect early brain network changes in preclinical and clinical neuropsychiatric disorders such as Alzheimer’s disease and psychosis</li>
<li>Understand the neurophysiological signatures and behavioral relevance of time-varying brain functional connectivity</li>
<li>Examine the longitudinal brain network changes and its associations with cognitive and mental problems in the developing and ageing brain</li>
<li>Investigate the underlying neural mechanism of brain-computer interface-based intervention</li>
<li>Examine the influence of amyloid-beta, tau, and cerebrovascular pathology on brain functional and structural connectivity changes in ageing</li>
<li>Develop machine learning and statistical methods for big data analysis, brain-behavior associations, and disease prognosis</li>
<!--li><i class="fa-phone color-primary">+65-65164339</i></li>
<li><i class="fa-envelope color-primary"></i>info@example.com</li>
<li><i class="fa-home color-primary"></i><a href="http://mnndl.org">http://mnndl.org</a></li-->
</ul>
</div>
</div>
</div>
</div>
<div class="row margin-vert-30">
<!-- Main Column -->
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" style="text-align: center;"><b>News</b></h3>
</div>
<div class="panel-body">
<div class="col-md-12">
<p><b><u><center><font size="10">2019</font></u></b></center></p>
<div class="col-md-12">
<p><b><font size="5">April</font></b></p>
<p style="font-size:3"><b> April 25: Thesis Defense - Public Seminar (Duke-NUS, Singapore)</b></p>
<p style="font-size:3">Congratulations to our PhD student, Ashwati Vipin, on her successful defense of her thesis titled <b><i>"Brain White Matter Abnormalities Across The Alzheimer's Disease Spectrum - A Longitudinal Perspective"</i></b>.</p>
<div class="col-md-2"></div>
<div class="col-md-8">
<!-- Carousel Slideshow -->
<div id="carousel-example2" class="carousel slide" data-ride="carousel">
<!-- Carousel Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example2" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example2" data-slide-to="1"></li>
<li data-target="#carousel-example2" data-slide-to="2"></li>
</ol>
<!-- End Carousel Indicators -->
<!-- Carousel Images -->
<div class="carousel-inner">
<div class="item active">
<img src="assets/img/ThesisDefence2019/Ashpresenting.jpeg">
</div>
<div class="item">
<img src="assets/img/ThesisDefence2019/AshandHelen.jpeg">
</div>
</div>
<!-- End Carousel Images -->
<!-- Carousel Controls -->
<a class="left carousel-control" href="#carousel-example2" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example2" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
<!-- End Carousel Controls -->
</div>
<!-- End Carousel Slideshow -->
</div>
<div class="col-md-2"></div>
</div>
<div class="row margin-vert-60"></div>
<p style="font-size:3"><b> April 5: Thesis Defense - Public Seminar (Duke-NUS, Singapore)</b></p>
<p style="font-size:3">Congratulations to our PhD student, Joanna Chong, on her successful defense of her thesis titled <b><i>"Brain Functional Network Changes In Ageing And Alzheimer's Disease"</i></b>.</p>
<div class="col-md-2"></div>
<div class="col-md-8">
<!-- Carousel Slideshow -->
<div id="carousel-example2" class="carousel slide" data-ride="carousel">
<!-- Carousel Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example2" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example2" data-slide-to="1"></li>
<li data-target="#carousel-example2" data-slide-to="2"></li>
</ol>
<!-- End Carousel Indicators -->
<!-- Carousel Images -->
<div class="carousel-inner">
<div class="item active">
<img src="assets/img/ThesisDefence2019/Joannapresenting.jpeg">
</div>
<div class="item">
<img src="assets/img/ThesisDefence2019/JoannaandHelen.jpeg">
</div>
</div>
<!-- End Carousel Images -->
<!-- Carousel Controls -->
<a class="left carousel-control" href="#carousel-example2" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example2" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
<!-- End Carousel Controls -->
</div>
<!-- End Carousel Slideshow -->
</div>
<div class="col-md-2"></div>
</div>
<div class="row margin-vert-60"></div>
<div class="col-md-12">
<p><b><center><u><font size="10">2018</font></u></b></center></p>
<div class="col-md-12">
<p><b><font size="5">December</font></b></p>
<p style="font-size:3"><b> December 3: NBD Retreat 2018 (NUSS Guild House, Singapore)</b></p>
<p style="font-size:3">Our PhD student, Joanna Chong, presented her work titled <b><i>"Influence of Alzheimer's Disease and Cerebrovascular Disease on Brain Functional Networks"</i></b> and our Post-doctoral researcher, Dr Siwei Liu, participated in the <i>Data Blitz</i> session with her work titled <b><i>"Cognitive and Brain Network Dedifferentiation in Individuals at Ultra-High Risk for Psychosis"</i></b>.</p>
<p style="font-size:3">The following lab members presented posters: </p>
<p style="font-size:3">1. Dr Siwei Liu - <b><i>"Cognitive and Brain Network Dedifferentiation in Individuals at Ultra-High Risk for Psychosis"</i></b><br>
<p style="font-size:3">2. Dr Liwen Zhang - <b><i>"BOLD Signal Variability Changes in the Default and Salience Networks in Amnestic Cognitive Impairment and <br> Alzheimer's Disease and Their Associations with Cognitive Decline"</i></b><br>
<p style="font-size:3">3. Dr Fang Ji - <b><i>"Cortical and White Matter Abnormalities in Early- and Late- Onset Alzheimer’s Disease"</i></b><br>
<p style="font-size:3">The following lab members were in the organizing committee: </p>
<p style="font-size:3">1. Dr Kwun Kei Ng
<p style="font-size:3">2. Ashwati Vipin
<p style="font-size:3">Many thanks for all their hard work in making the retreat a success !
<p>Click <a style="color: #002b80" href="assets/img/NBDRetreat2018/RetreatBooklet2018.pdf" target="_blank"><u>here</u></a> for more details</p>
<div class="col-md-2"></div>
<div class="col-md-8">
<!-- Carousel Slideshow -->
<div id="carousel-example2" class="carousel slide" data-ride="carousel">
<!-- Carousel Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example2" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example2" data-slide-to="1"></li>
<li data-target="#carousel-example2" data-slide-to="2"></li>
</ol>
<!-- End Carousel Indicators -->
<!-- Carousel Images -->
<div class="carousel-inner">
<div class="item active">
<img src="assets/img/NBDRetreat2018/NBDRetreat2018_1.jpeg">
</div>
<div class="item">
<img src="assets/img/NBDRetreat2018/NBDRetreat2018_2.jpeg">
</div>
<div class="item">
<img src="assets/img/NBDRetreat2018/NBDRetreat2018_3.jpeg">
</div>
<div class="item">
<img src="assets/img/NBDRetreat2018/NBDRetreat2018_4.jpeg">
</div>
<div class="item">
<img src="assets/img/NBDRetreat2018/NBDRetreat2018_5.jpeg">
</div>
</div>
<!-- End Carousel Images -->
<!-- Carousel Controls -->
<a class="left carousel-control" href="#carousel-example2" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example2" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
<!-- End Carousel Controls -->
</div>
<!-- End Carousel Slideshow -->
</div>
<div class="col-md-2"></div>
</div>
<div class="col-md-12">
<p><b><font size="5">November</font></b></p>
<p style="font-size:3"><b> November 12: NBD Invited Speaker Seminar Series (Duke-NUS, Singapore)</b></p>
<p style="font-size:3">A warm welcome to Associate Professor Michael Schöll for his visit to Duke-NUS Medical School and sharing his Tau Imaging Project.</p>
<p>Click <a style="color: #002b80" href="https://www.duke-nus.edu.sg/nbd/event/invited-speaker-seminar-update-what-we-believe-tau-imaging" target="_blank"><u>here</u></a> for more details</p>
<p style="font-size:3">Congratulations to Dr Helen Zhou for her appointment as Editor of NeuroImage and election as Council - Secretary of Organization of Human Brain Mapping.</p>
</div>
<div class="col-md-12">
<p><b><font size="5">September</font></b></p>
<p style="font-size:3"><b> September 21-22: 5th Singhealth Duke-NUS Scientific Congress 2018 (Academia, Singapore)</b></p>
<p style="font-size:3"> Our PhD student, Ashwati Vipin, presented her work titled <b><i>"Greater longitudinal white matter microstructure and extracellular free-water changes in healthy elderly APOE4 allele carriers"</i></b> and was presented with the Best Oral Presentation (Clinical Junior) Award. </p>
<p style="font-size:3"> Our other PhD student, Joanna Chong, presented a poster titled <b><i>"Amyloid and cerebrovascular burden influences on longitudinal brain functional connectivity changes in mild cognitive impairment"</i></b>.</p>
<p style="font-size:3">Click <a style="color: #002b80" href="https://www.singhealthacademy.edu.sg/sites/sdc2018/About/Pages/welcome.aspx" target="_blank"><u>here</u></a> for more details</p>
<div class="col-md-2"></div>
<div class="col-md-8">
<!-- Carousel Slideshow -->
<div id="carousel-example2" class="carousel slide" data-ride="carousel">
<!-- Carousel Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example2" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example2" data-slide-to="1"></li>
<li data-target="#carousel-example2" data-slide-to="2"></li>
</ol>
<!-- End Carousel Indicators -->
<!-- Carousel Images -->
<div class="carousel-inner">
<div class="item active">
<img src="assets/img/SinghealthDukeNUS2018/SinghealthDukeNUS2018_1.jpeg">
</div>
<div class="item">
<img src="assets/img/SinghealthDukeNUS2018/SinghealthDukeNUS2018_2.jpeg">
</div>
<div class="item">
<img src="assets/img/SinghealthDukeNUS2018/SinghealthDukeNUS2018_3.jpeg">
</div>
</div>
<!-- End Carousel Images -->
<!-- Carousel Controls -->
<a class="left carousel-control" href="#carousel-example2" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example2" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
<!-- End Carousel Controls -->
</div>
<!-- End Carousel Slideshow -->
</div>
<div class="col-md-2"></div>
</div>
<div class="col-md-12">
<p><b><font size="5">July</font></b></p>
<p style="font-size:3"><b>July 22-26: Alzheimer's Association International Conference 2018 (Chicago, USA)</b></p>
<p style="font-size:3">Our PhD students Ashwati Vipin and Joanna Chong and Post-doctoral researcher Dr Liwen Zhang attended and presented their work. The meeting brings together scientists, clinicians and industry experts on dementia involved in the advancement of dementia research. </p>
<p style="font-size:3">For more information, check out the <a style="color: #002b80" href="https://www.alz.org/aaic/about/chicago.asp" target="_blank"><u>AAIC official website</u></a></p>
<p style="font-size:3">Poster Presentations: </p>
<p style="font-size:3">1. Dr Liwen Zhang - <b><i>"Cerebral Microinfarct Influences Structural Network Topology in Alzheimer's Disease and Cognitive Impairment No <br> Dementia"</i></b><br>
2. Joanna Chong - <b><i>"Amyloid and Cerebrovascular Burden Influences on Longitudinal Brain Functional Connectivity Changes in Mild<br> Cognitive Impairment"</i></b><br>
3. Ashwati Vipin- <b><i>"Greater Longitudinal White Matter Microstructure and Extracellular Free-Water Changes in Healthy Elderly APOE4 Allele <br> Carriers"</i></b><br>
<br>
<div class="col-md-2"></div>
<div class="col-md-8">
<!-- Carousel Slideshow -->
<div id="carousel-example" class="carousel slide" data-ride="carousel">
<!-- Carousel Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example" data-slide-to="1"></li>
<li data-target="#carousel-example" data-slide-to="2"></li>
</ol>
<!-- End Carousel Indicators -->
<!-- Carousel Images -->
<div class="carousel-inner">
<div class="item active">
<img src="assets/img/AAIC/AAIC_1.jpg">
</div>
<div class="item">
<img src="assets/img/AAIC/AAIC_2.jpg">
</div>
<div class="item">
<img src="assets/img/AAIC/AAIC_3.jpg">
</div>
</div>
<!-- End Carousel Images -->
<!-- Carousel Controls -->
<a class="left carousel-control" href="#carousel-example" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
<!-- End Carousel Controls -->
</div>
<!-- End Carousel Slideshow -->
</div>
<div class="col-md-2"></div>
<!--div class="col-md-2"></div>
<div class="col-md-8"><img sizes="" src="assets/img/5040.JPG"></div>
<div class="col-md-2"></div-->
</div>
<div class="col-md-12">
<p><b><font size="5">June</font></b></p>
<p style="font-size:3"><b>June 22: Multimodal Neuroimaging for Mental Disorders Workshop 2018 (CeLS auditorium at NUS, Singapore)</b></p>
<p style="font-size:3">Jointly organized by Dr Helen Zhou's lab from Duke-NUS and Dr Thomas Yeo's lab from NUS. This workshop featured cutting-edge multimodal neuroimaging research by local and international speakers on human brain anatomy, function and connectivity, as well as their alterations due to development, aging and mental disorders. </p>
<p style="font-size:3">Dr Helen Zhou gave a talk titled <b><i>"Brain structural and functional network changes in aging and persons at-risk for dementia"</i></b>.</p>
<p style="font-size:3">Click <a style="color: #002b80" href="https://sites.google.com/site/yeoyeo02/MultimodalNeuroimaging2018" target="_blank"><u>here</u></a> for more details</p>
<p style="font-size:3"><b>June 17-21: Organization for Human Brain Mapping 2018 (Suntec Convention Centre, Singapore)</b></p>
<p style="font-size:3">The OHBM Annual Meeting is the place to learn about the latest international research across modalities in human brain mapping.</p>
<p style="font-size:3">Dr Helen Zhou gave a talk titled <b><i>"Brain Functional Connectivity in Ageing and Neurodegenerative Disorders: From Nodes to Networks"</i></b>.</p>
<p style="font-size:3">Our PhD student, Ashwati Vipin, presented her work titled <b><i>"Influence of cerebrovascular disease on brain networks in prodromal and clinical Alzheimer's disease"</i></b> and was presented with the Merit Abstract Award. Her findings illustrate distinct network functional connectivity phenotypes underlying cognitive impairment in patients with and without cerebrovascular disease and provide important evidence for the influence of cerebrovascular disease on early structural network disruptions. Her work has been recently published in Alzheimer's Research and Therapy.</p>
<p style="font-size:3">The following lab members presented posters: </p>
<p style="font-size:3">1. Dr Kwun Kei Ng - <b>Poster No. 2182 <i><a style="color: #002b80" href="https://ww5.aievolution.com/hbm1801/index.cfm?do=abs.viewAbs&abs=2387" target="_blank"> "Age‐related alternations in task modulation and rest‐task similarity of the functional connectome"</a></i></b><br>
2. Dr Siwei Liu - <b>Poster No. 1396 <i><a style="color: #002b80" href="https://ww5.aievolution.com/hbm1801/index.cfm?do=abs.viewAbs&abs=1411" target="_blank"> "Longitudinal Working Memory Functional Dysconnectivity Reflects Heterogeneity in UHR for Psychosis"</a></i></b><br>
3. Dr Fang Ji - <b>Poster No. 1101 <i><a style="color: #002b80" href="https://ww5.aievolution.com/hbm1801/index.cfm?do=abs.viewAbs&abs=1696" target="_blank"> "Differential severity‐dependent contributions of brain abnormalities to memory deficits in the AD"</a></i></b><br>
4. Joanna Chong - <b>Poster No. 1122 <i><a style="color: #002b80" href="https://ww5.aievolution.com/hbm1801/index.cfm?do=abs.viewAbs&abs=2277" target="_blank"> "Influence of cerebrovascular disease on brain networks in prodromal and clinical Alzheimer's disease"</a></i></b><br>
5. Xiao Luo - <b>Poster No. 1124 <i><a style="color: #002b80" href="https://ww5.aievolution.com/hbm1801/index.cfm?do=abs.viewAbs&abs=2319" target="_blank"> "White Matter Hyperintensities Predicts Progression in Subjective Memory Concern" </a></i></b><br>
6. Ashwati Vipin - <b>Poster No. 1109 <i><a style="color: #002b80" href="https://ww5.aievolution.com/hbm1801/index.cfm?do=abs.viewAbs&abs=2094" target="_blank"> "Cerebrovascular disease influences brain network connectivity in prodromal and clinical AD"</a></i> <br> (OHBM 2018 Merit Abstract Award)</b><br>
7. Mengjiao Hu - <b>Poster No. 1456 <i><a style="color: #002b80" href="https://ww5.aievolution.com/hbm1801/index.cfm?do=abs.viewAbs&abs=2921" target="_blank"> "Differential BOLD fluctuations in brain networks after BCI Training with and without tDCS in Stroke"</a></i></b><br>
8. Dr Liwen Zhang - <b>Poster No. 1104 <i><a style="color: #002b80" href="https://ww5.aievolution.com/hbm1801/index.cfm?do=abs.viewAbs&abs=1873" target="_blank"> "Variability Patterns in Amnestic Mild Cognitive Impairment and Alzheimer's Disease"</a></i></b><br>
9. Dr Xing Qian - <b>Poster No. 1770 <i><a style="color: #002b80" href="https://ww5.aievolution.com/hbm1801/index.cfm?do=abs.viewAbs&abs=2500" target="_blank"> "BCI‐based intervention re‐normalizes brain functional network topology in children with ADHD"</a></i></b><br>
</p>
<p style="font-size:3">For more information, check out the <a style="color: #002b80" href="https://www.humanbrainmapping.org/i4a/pages/index.cfm?pageID=3821" target="_blank"><u>OHBM 2018 official website</u></a></p>
<p style="font-size:3">Additionally for foreign OHBM attendees, click <a style="color: #002b80" href="http://brain-in-sinc.com/home.html" target="_blank"><u>here</u></a> for more details</p>
<br>
<div class="col-md-2"></div>
<div class="col-md-8">
<!-- Carousel Slideshow -->
<div id="carousel-example" class="carousel slide" data-ride="carousel">
<!-- Carousel Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example" data-slide-to="1"></li>
<li data-target="#carousel-example" data-slide-to="2"></li>
</ol>
<!-- End Carousel Indicators -->
<!-- Carousel Images -->
<div class="carousel-inner">
<div class="item active">
<img src="assets/img/OHBM2018/OHBM_1.jpeg">
</div>
<div class="item">
<img src="assets/img/OHBM2018/OHBM_2.jpeg">
</div>
<div class="item">
<img src="assets/img/OHBM2018/OHBM_3.jpeg">
</div>
<div class="item">
<img src="assets/img/OHBM2018/OHBM_4.jpeg">
</div>
<div class="item">
<img src="assets/img/OHBM2018/OHBM_5.jpeg">
</div>
<div class="item">
<img src="assets/img/OHBM2018/OHBM_6.jpeg">
</div>
<div class="item">
<img src="assets/img/OHBM2018/OHBM_7.jpeg">
</div>
<div class="item">
<img src="assets/img/OHBM2018/OHBM_8.jpeg">
</div>
<div class="item">
<img src="assets/img/OHBM2018/OHBM_9.jpeg">
</div>
<div class="item">
<img src="assets/img/OHBM2018/OHBM_10.jpeg">
</div>
<div class="item">
<img src="assets/img/OHBM2018/OHBM_11.jpeg">
</div>
<div class="item">
<img src="assets/img/OHBM2018/OHBM_12.jpeg">
</div>
</div>
<!-- End Carousel Images -->
<!-- Carousel Controls -->
<a class="left carousel-control" href="#carousel-example" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
<!-- End Carousel Controls -->
</div>
<!-- End Carousel Slideshow -->
</div>
<div class="col-md-2"></div>
</div>
<!--div class="col-md-2"></div>
<div class="col-md-8"><img sizes="" src="assets/img/5040.JPG"></div>
<div class="col-md-2"></div-->
<div class="col-md-12">
<p><b><font size="5">April</font></b></p>
<p style="font-size:3"><b> April 4-8: 6th Biennial Schizophrenia International Research Society Conference (Firenze Fiera Congress Center, Florence, Italy)</b></p>
<p style="font-size:3"> Dr Helen Zhou gave a talk titled <b><i>"Brain Functional Connectomics Based on Resting State fMRI: From Nodes to Networks"</i></b>.</p>
<p style="font-size:3"> Dr Siwei Liu presented a poster titled <b><i>"Longitudinal Working Memory Functional Dsyconnectivity Reflects Heterogeneity in Individuals at Ultra High Risk for Psychosis"</i></b>.</p>
<p style="font-size:3"> For more information, check out the <a style="color: #002b80" href="http://www.schizophreniaconference.org/" target="_blank"><u>SIRS official website</u></a></p>
<div class="col-md-2"></div>
<div class="col-md-8">
<!-- Carousel Slideshow -->
<div id="carousel-example2" class="carousel slide" data-ride="carousel">
<!-- Carousel Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example2" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example2" data-slide-to="1"></li>
<li data-target="#carousel-example2" data-slide-to="2"></li>
</ol>
<!-- End Carousel Indicators -->
<!-- Carousel Images -->
<div class="carousel-inner">
<div class="item active">
<img src="assets/img/SIRS2018/1.jpg">
</div>
<div class="item">
<img src="assets/img/SIRS2018/2.jpg">
</div>
<div class="item">
<img src="assets/img/SIRS2018/3.jpg">
</div>
</div>
<!-- End Carousel Images -->
<!-- Carousel Controls -->
<a class="left carousel-control" href="#carousel-example2" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example2" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
<!-- End Carousel Controls -->
</div>
<!-- End Carousel Slideshow -->
</div>
<div class="col-md-2"></div>
</div>
<div class="col-md-12">
<p><b><font size="5">March</font></b></p>
<p style="font-size:3"><b> March 19-23: XXI Symposium Neuroradiologicum (Taipei International Convention Center, Taipei, Taiwan)</b></p>
<p style="font-size:3"> Dr Helen Zhou gave a talk titled <b><i>"Longitudinal Brain Structural and Functional Network Changes in Ageing and Neurodegenerative Disorders"</i></b>.</p>
<p style="font-size:3"> For more information, check out the <a style="color: #002b80" href="http://www.snr2018.org/" target="_blank"><u>SNR 2018 official website</u></a></p>
<p style="font-size:3"><b> March 15-16: Biomarkers in Dementia and Cognitive Impairment Symposium (Duke-NUS medical School, Singapore)</b></p>
<p style="font-size:3"> Dr Helen Zhou gave a talk titled <b><i>"Network-based brain structural & functional changes from preclinical to clinical neurodegenerative disorders"</i></b>.</p>
<p style="font-size:3"> The following presentations were also given by our lab members: </p>
<p style="font-size:3">1. Dr Kwun Kei Ng - <b><i>"Longitudinal changes in brain functional connectivity in healthy older adults and the influence of APOE e4 genotype"</i></b><br>
2. Dr Siwei Liu - <b><i>"The association between retinal neuronal layer and brain structure is disrupted in patients with cognitive impairment and Alzheimer’s disease"</i></b><br>
3. Dr Fang Ji - <b><i>"White matter extracellular water increases and tissue damage in the prodromal and clinical Alzheimer’s disease"</i></b><br>
4. Joanna Chong - <b><i>"Influence of Alzheimer's disease and cerebrovascular disease on brain functional networks"</i></b><br>
5. Xiao Luo - <b><i>"Predictive brain structure, amyloid and behavioural features for clinical progression in subjective memory concern"</i></b></p>
<br>
<div class="col-md-2"></div>
<div class="col-md-8">
<!-- Carousel Slideshow -->
<div id="carousel-example" class="carousel slide" data-ride="carousel">
<!-- Carousel Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example" data-slide-to="1"></li>
<li data-target="#carousel-example" data-slide-to="2"></li>
</ol>
<!-- End Carousel Indicators -->
<!-- Carousel Images -->
<div class="carousel-inner">
<div class="item active">
<img src="assets/img/biomarker_symposium/1.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/2.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/3.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/4.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/5.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/6.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/7.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/8.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/9.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/10.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/11.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/12.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/13.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/14.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/15.jpg">
</div>
<div class="item">
<img src="assets/img/biomarker_symposium/16.jpg">
</div>
</div>
<!-- End Carousel Images -->
<!-- Carousel Controls -->
<a class="left carousel-control" href="#carousel-example" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
<!-- End Carousel Controls -->
</div>
<!-- End Carousel Slideshow -->
</div>
<div class="col-md-2"></div>
</div>
<div class="col-md-12">
<p><b><font size="5">February</font></b></p>
<p style="font-size:3"><b> February 8: NBD Invited Speaker Seminar Series (Duke-NUS, Singapore)</b></p>
<p style="font-size:3">A warm welcome to Professor Xi-Nian Zuo for his visit to Duke-NUS Medical School and sharing his Chinese Color Nest Project - Growing up in China.</p>
<p>Click <a style="color: #002b80" href="https://www.duke-nus.edu.sg/nbd/event/invited-speaker-seminar-chinese-color-nest-project-growing-china" target="_blank"><u>here</u></a> for more details</p>
<p style="font-size:3"><b> February 1: NBD Invited Speaker Seminar Series (Duke-NUS, Singapore)</b></p>
<p style="font-size:3">A warm welcome to Professor Stephen Wood for his visit to Duke-NUS Medical School and discussion on autism and schizophrenia spectrum disorders. </p>
<p>Click <a style="color: #002b80" href="https://www.duke-nus.edu.sg/nbd/event/invited-speaker-seminar-imaging-cognitive-evidence-diametric-model-autism-and-schizophrenia" target="_blank"><u>here</u></a> for more details</p>
<!--div class="col-md-2"></div>
<div class="col-md-8"><img sizes="" src="assets/img/5040.JPG"></div>
<div class="col-md-2"></div-->
</div>
<div class="row margin-vert-60"></div>
<div class="col-md-12">
<p><b><u><center><font size="10">2017</font></u></b></center></p>
<p><b><font size="5">August</font></b></p>
<p style="font-size:3">Congratulations to our PhD student Joanna Chong's recent publication <b><i>"Influence of cerebrovascular disease on brain networks in prodromal and clinical Alzheimer’s disease"</i></b> has been selected as an Editor's Choice for the month of November 2017, and it will be highlighted on the <a style="color: #002b80" href="https://academic.oup.com/brain" target="_blank"><u><i>Brain</i> website</a></u>.</p>
<p>Click <a style="color: #002b80" href="https://www.duke-nus.edu.sg/news/differing-neural-network-responses-alzheimer%E2%80%99s-patients-and-without-cerebrovascular-disease" target="_blank"><u>here</u></a> for more details</p>
<!--div class="col-md-2"></div>
<div class="col-md-8"><img sizes="" src="assets/img/5040.JPG"></div>
<div class="col-md-2"></div-->
</div>
<div class="col-md-12">
<p><b><font size="5">June</font></b></p>
<p style="font-size:3">Congratulations to our PhD students Joanna Chong and Ashwati Vipin for winning the Merit Abstract Award and to Joanna for her presentation well done at OHBM 2017, in Vancouver.</p>
<div class="col-md-2"></div>
<div class="col-md-8"><img sizes="" src="assets/img/5040.JPG"></div>
<div class="col-md-2"></div>
</div>
<div class="col-md-12">
<br>
<br>
<p><b><font size="5">May</font></b></p>
<p style="font-size: 3">Congratulations to Dr Chenhao Wang for winning the Most Outstanding Graduating Duke-NUS M.D./Ph.D. Student Award on his thesis <i><b>"Topology and dynamic of brain intrinsic connectivity in neuropsychiatric disorders"</i></b>.</p>
<div class="col-md-2"></div>
<div class="col-md-8"><img sizes="" src="assets/img/hao.jpg"></div>
<div class="col-md-2"></div>
</div>
</div>
</div>
</div>
<div class="row margin-vert-30">
<!-- Main Column -->
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" style="text-align: center;"><b> Journal Club </b></h3>
</div>
<div class="panel-body">
<br>
<p style="text-align: center">Our journal club meetings are held every Thursday 9am, Duke-NUS Medical School.</p>
<p style="text-align: center">Click <a style="color: #002b80" href="https://docs.google.com/spreadsheets/d/1l5ljg_K9EY45EWn6uyJPrbzbKYVYvWfl1yPK23qnAE8/edit#gid=348983995" target="_blank" target="_blank"><u>here</u></a> for the JC Venue, Topic, and Speaker</p>
</div>
</div>
</div>
</div>
<!-- Main Column -->
<!--div class="row margin-vert-30">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" style="text-align: center;"> <b> Research Support </b></h3>
</div>
<div class="panel-body">
<br>
<p >Our research is supported by the Biomedical Research Council, the National Medical Research Council, the Ministry of Education, and Duke-NUS Medical School Signature Research Program funded by Ministry of Health, Singapore.</p>
</div>
</div>
</div>
</div-->
<div class="row margin-vert-30">
<!-- Main Column -->
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title" style="text-align: center;"><b>Research Software</b></h3>
</div>
<div class="panel-body">
<p style="text-align: center;">
<a style="color:: #002b80;" href="http://surfer.nmr.mgh.harvard.edu/" target="_blank"><u>FreeSurfer Software Suite</u></a></p>
<p style="text-align: center;">An open source software suite for processing and analyzing (human) brain MRI images.</p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="http://www.fil.ion.ucl.ac.uk/spm/" target="_blank"><u>SPM software package</u></a></p>
<p style="text-align: center;">Designed for the analysis of brain imaging data sequences. The sequences can be a series of images from different cohorts, or time-series from the same subject. The current release is designed for the analysis of fMRI, PET, SPECT, EEG and MEG.</p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="http://mialab.mrn.org/software/gift/" target="_blank"><u>GIFT</u></a></p>
<p style="text-align: center;">A MATLAB toolbox which implements multiple algorithms for independent component analysis and blind source separation of group (and single subject) functional magnetic resonance imaging data.</p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="http://cmrm.med.jhmi.edu/" target="_blank"><u>DTIstudio</u></a></p>
<p style="text-align: center;">A versatile resource program developed for diffusion tensor image (DTI) computation and fiber tracking. </p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="http://psychtoolbox.org/" target="_blank"><u>Matlab Psychophysics toolbox</u></a></p>
<p style="text-align: center;">Psychophysics Toolbox Version 3 (PTB-3) is a free set of Matlab and GNU Octave functions for vision and neuroscience research. It synthesizes and shows accurately controlled visual and auditory stimuli for the observer. </p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="https://afni.nimh.nih.gov/" target="_blank"><u>SUMA</u></a></p>
<p style="text-align: center;">A program that allows viewing 3D cortical surface models, and mapping volumetric data onto them. </p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="http://marsbar.sourceforge.net/" target="_blank"><u>MarsBaR</u></a></p>
<p style="text-align: center;">A toolbox for SPM which provides routines for region of interest analysis. </p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="https://www.nitrc.org/" target="_blank"><u>NITRC</u></a></p>
<p style="text-align: center;">Neuroimaging Informatics Tools and Resources Clearinghouse (NITRC) is a source of neuroinformatics tools, publicly available data sets, and a cloud computing environment. </p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="http://www.nitrc.org/projects/mricron" target="_blank"><u>MRIcron</u></a></p>
<p style="text-align: center;">A cross-platform NIfTI format image viewer. </p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="https://sites.google.com/site/bctnet/" target="_blank"><u>Brain Connectivity Toolbox</u></a></p>
<p style="text-align: center;">A MATLAB toolbox for complex-network analysis of structural and functional brain-connectivity data sets. </p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="https://fsl.fmrib.ox.ac.uk/fsl/fslwiki" target="_blank"><u>FSL</u></a></p>
<p style="text-align: center;">FMRIB Software Library (FSL) is a library of analysis tools for FMRI, MRI and DTI brain imaging data. </p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="http://www.nitrc.org/projects/panda/" target="_blank"><u>PANDA</u></a></p>
<p style="text-align: center;">Pipeline for analyzing brain diffusion images (PANDA) is a Matlab toolbox for pipeline processing of diffusion MRI images. For each subject, PANDA can provide outputs in 2 types: i) diffusion parameter data that is ready for statistical analysis; ii) brain anatomical networks constructed by using diffusion tractography. </p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="https://fsl.fmrib.ox.ac.uk/fsl/fslwiki" target="_blank"><u>EEG-Cartool</u></a></p>
<p style="text-align: center;">Mainly an EEG, ERP and inverse solutions tool, with some fast and powerful 3D display capabilities. </p>
<hr>
<p style="text-align: center;">
<a style="color:: #002b80;" href="https://sites.google.com/site/cartoolcommunity/" target="_blank"><u>REST</u></a></p>
<p style="text-align: center;">Resting-State fMRI Data Analysis Toolkit (REST) is a convenient toolkit to calculate Functional Connectivity (FC), Regional Homogeneity (ReHo), Amplitude of Low-Frequency Fluctuation (ALFF), Fractional ALFF (fALFF), Gragner causality, degree centrality, voxel-mirrored homotopic connectivity (VMHC) and perform statistical analysis.</p>
<hr>
</div>
</div>
</div>
</div>
<!-- End Main Column -->
<!-- === END CONTENT === -->
<!-- === BEGIN FOOTER === -->
<!-- Footer Menu -->
<div id="footer">
<div class="container">
<div class="row">
<div id="copyright" class="col-md-12">
<p>(c) 2017 Copyright @ Multimodal Neuroimaging in Neuropsychiatric Disorders Laboratory</p>
</div>
<!--div id="footermenu" class="col-md-8">
<ul class="list-unstyled list-inline pull-right">
<li>
<a href="#" target="_blank" >Sample Link</a>
</li>
<li>
<a href="#" target="_blank" >Sample Link</a>
</li>