-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
3232 lines (2844 loc) · 95.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="fr">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta charset="utf-8" />
<link rel="canonical" hreflang="fr" href="https://belgo.art/" />
<link rel="alternate" hreflang="fr" href="https://belgo.art/index" />
<link rel="alternate" hreflang="fr" href="https://belgo.art/index.html" />
<link rel="alternate" hreflang="en" href="https://belgo.art/english" />
<link rel="alternate" hreflang="en" href="https://belgo.art/english.html" />
<!-- <link rel="alternate" hreflang="x-default" href="https://belgo.art/index.html" /> -->
<title>Belgo.art : expositions d'art visuel en cours au Belgo</title>
<meta name="author" content="Louis-Bernard St-Jean" />
<meta name="description" content="L'édifice Belgo : la plus grande concentration de galeries d'art contemporain au Canada. Liste des expositions d'art en cours au Belgo" />
<!-- <meta name="description" content="La plus grande concentration de galeries d'art contemporain, de centres d'art, et d'ateliers d'artistes au Québec. Consultez la liste des expositions en cours de l'édifice Belgo, situé au cœur du Quartier des spectacles à Montréal, Québec, Canada." /> -->
<meta name="keywords" content="Belgo, galeries belgo, belgo.art, belgo art, galeries d'art belgo, galeries d'art montréal, belgo expositions, expo belgo, galeries montréal, galeries à Montréal, galerie d'art, galerie d'art contemporain, exposition, expositions, expositions belgo, expositions au belgo, art, art contemporain, oeuvre d'art, vernissage, Montréal, centre-ville, Louis-Bernard St-Jean Art contemporain, Espace St-Jean, Espace 230, Skol, Centre des arts actuels Skol, Galerie B-312, Patel Brown, McBride Contemporain, Chiguer Art contemporain, Galerie C, Galerie Cache, Arprim, galerie Ingang design, Galerie POPOP, CIRCA art actuel, Galeries Bellemare Lambert, SBC Galerie d'art contemporain, Galerie Hugues Charbonneau, Duran contemporain, exhibition, artwork, contemporary art, art for sale montreal, contemporary art gallery, art event, art opening, montreal art opening, montreal vernissage, montreal art show" />
<meta property="og:url" content="https://belgo.art/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Expositions d'art visuel au Belgo" />
<meta property="og:image" content="https://belgo.art/images/thumbnail-fr.jpg" />
<meta property="og:description" content="La plus grande concentration de galeries d'art contemporain au Canada. Consultez la liste des expositions d'art visuel en cours dans l'édifice Belgo, situé au cœur du Quartier des spectacles à Montréal, Québec, Canada." />
<meta property="og:locale" content="fr_CA" />
<meta property="og:locale:alternate" content="en_CA" />
<meta property="og:site_name" content="Expositions d'art visuel au Belgo" />
<meta property="og:secure_url" content="https://belgo.art/images/thumbnail-fr.jpg" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="2400" />
<meta property="og:image:height" content="1260" />
<meta property="og:image:alt" content="Expositions d'art visuel au Belgo" />
<!-- Web App -->
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=yes">
<meta name="apple-mobile-web-app-status-bar-style" content="hidden">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="white">
<meta name="apple-mobile-web-app-title" content="Belgo.art">
<meta name="application-name" content="Belgo.art">
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png?v=3.0">
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png?v=3.0">
<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png?v=3.0">
<link rel="icon" type="image/png" sizes="512x512" href="/icons/favicon-512x512.png?v=3.0">
<link rel="icon" type="image/png" sizes="192x192" href="/icons/favicon-192x192.png?v=3.0">
<link rel="manifest" href="/icons/site.webmanifest?v=3.0">
<link rel="mask-icon" href="/icons/safari-pinned-tab.svg?v=3.0" color="#000000">
<link rel="shortcut icon" href="/icons/favicon.ico?v=3.0">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8M1Q9CE17B"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-8M1Q9CE17B');
</script>
<!-- End Google tag -->
<!-- Begin global CSS styling -->
<style id="global-css">
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
-webkit-font-smoothing: subpixel-antialiased;
-moz-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizelegibility;
font-kerning: normal;
scrollbar-width: none;
}
body::-webkit-scrollbar {
display: none;
}
html {
font-size: 15px;
font-weight: inherit;
}
a:not(.BlackLink) {
color: #121314;
/* text-decoration: none !important; */
}
a.BlackLink {
color: #121314;
text-decoration: none !important;
}
a.Language {
color: #191E60;
text-decoration: none !important;
}
a.Language:hover {
color: #1b2b91 !important;
text-decoration: underline !important;
transition: 0.4s;
}
/* #banner img {
padding: 0 3.675em;
} */
h1,
h2,
h3,
h4 {
font-weight: inherit;
}
/* This rebuilds the gallery links as they should be */
.OpeningDate a {
font-family: Helvetica-Bold;
padding-bottom: 0;
margin-bottom: 0;
color: #191E60;
/* color: #171a43; */
text-decoration: none !important;
}
.TitleName a,
.ArtistName a,
.OpeningDate a,
.WebsiteAndTimeOpen a,
.Footer a {
color: #191E60;
font-family: Helvetica-Bold;
letter-spacing: 0 !important;
}
.TitleName a:hover,
.ArtistName a:hover,
.OpeningDate a:hover,
.WebsiteAndTimeOpen a:hover,
.Footer a:hover {
color: #1b2b91 !important;
text-decoration: underline !important;
transition: 0.4s;
}
@media print {
#banner {
visibility: hidden;
display: none;
}
.exhibitionDate {
color: #121314;
}
}
.studio>span>a,
.studio>span {
color: #445 !important;
}
.closed>span>a,
.closed>span {
color: #777 !important;
}
/* #p1 { */
#pg1 {
background-color: #F7F6F5 !important;
}
</style>
<!-- End global CSS styling -->
<!-- Begin embedded font definitions -->
<style id="fonts">
@font-face {
font-family: Helvetica;
src: url("fonts/Helvetica.woff2") format("woff2");
}
@font-face {
font-family: Helvetica-Bold;
src: url("fonts/Helvetica-Bold.woff2") format("woff2");
}
@font-face {
font-family: Helvetica-Oblique;
src: url("fonts/Helvetica-Oblique.woff2") format("woff2");
}
@font-face {
font-family: Helvetica-BoldOblique;
src: url("fonts/Helvetica-BoldOblique.woff2") format("woff2");
}
/* @font-face {
font-family: Helvetica-Light;
src: url("fonts/Helvetica-Light.woff2") format("woff2");
} */
/* @font-face {
font-family: Helvetica-LightOblique;
src: url("fonts/Helvetica-LightOblique.woff2") format("woff2");
} */
</style>
<!-- End embedded font definitions -->
<!-- Begin responsive adjustments -->
<style id="responsive-css">
/* FIX RATIO WITH NEW HEIGHT */
/* width: 1210px; height: 2090px; (11x19 inch*/
/* Example: (1179/1210)-0.07 = 0.967 */
/* Calculate max-height: multiply viewport max-width with 1.7272727272 (1.7272727272 being the page size ratio of 11x19inch) */
/* Old Calculation */
/* Calculate scale by didving Viewport width with Page render width (1210px), then shave off a bit (i.e. 0.05) */
/* Height 1870 Width 1210 */
/* Example: (1179/1210)-0.07 = 0.967 */
/* Use max-height to shave off excessive trailing blank space at the end of the page */
/* Calculate max-height: multiply viewport max-width with 1.54 (1.5454 being the page size ratio of 11x17inch) */
/* Auto calc attempt -- Not working yet */
/* @media screen and (orientation: portrait) {
:root {
--viewport-height: 100vh;
--viewport-width: 100vw;
--transform-scale: calc(var(--viewport-width) / 1210);
}
body {
--viewport-height: 100vh !important;
--viewport-width: 100vw !important;
--transform-scale: calc(var(--viewport-width) / 1210) !important;
transform-origin: top left;
transform: scale(var(--transform-scale)) !important;
max-height: calc(var(--viewport-width)*1.7272727272);
}
} */
/* End Auto calc attempt -- Not working yet */
/* @media screen and (orientation: portrait) and (max-width:1179px) { */
/* @media screen and (orientation: portrait) and (max-width:1180px) {
body {
transform-origin: top left;
transform: scale(0.900);
max-height: 2038px;
}
} */
@media screen and (orientation: portrait) and (max-width:1024px) {
body {
transform-origin: top left;
transform: scale(0.845);
max-height: 1769px;
/* 11x17 ratio */
/* max-height: 1580px; */
}
}
@media screen and (orientation: portrait) and (max-width:834px) {
body {
transform-origin: top left;
transform: scale(0.685);
max-height: 1441px;
/* 11x17 ratio */
/* max-height: 1280px; */
}
}
@media screen and (orientation: portrait) and (max-width:820px) {
body {
transform-origin: top left;
transform: scale(0.675);
max-height: 1416px;
/* 11x17 ratio */
/* max-height: 1263px; */
}
}
@media screen and (orientation: portrait) and (max-width:810px) {
body {
transform-origin: top left;
transform: scale(0.665);
max-height: 1399px;
/* 11x17 ratio */
/* max-height: 1245px; */
}
}
@media screen and (orientation: portrait) and (max-width:800px) {
body {
transform-origin: top left;
transform: scale(0.655);
max-height: 1382px;
/* 11x17 ratio */
/* max-height: 1200px; */
}
}
@media screen and (orientation: portrait) and (max-width:768px) {
body {
transform-origin: top left;
transform: scale(0.63);
max-height: 1327px;
/* 11x17 ratio */
/* max-height: 1180px; */
}
}
@media screen and (orientation: portrait) and (max-width:600px) {
body {
transform-origin: top left;
transform: scale(0.495);
max-height: 1036px;
/* 11x17 ratio */
/* max-height: 926px; */
}
}
@media screen and (orientation: portrait) and (max-width:560px) {
body {
transform-origin: top left;
transform: scale(0.463);
max-height: 967px;
/* 11x17 ratio */
/* max-height: 866px; */
}
}
@media screen and (orientation: portrait) and (max-width:428px) {
body {
transform-origin: top left;
transform: scale(0.35);
max-height: 739px;
/* 11x17 ratio */
/* max-height: 655px; */
}
}
@media screen and (orientation: portrait) and (max-width:414px) {
body {
transform-origin: top left;
transform: scale(0.34);
max-height: 715px;
/* 11x17 ratio */
/* max-height: 636px; */
}
}
@media screen and (orientation: portrait) and (max-width:393px) {
body {
transform-origin: top left;
transform: scale(0.32);
max-height: 674px;
/* 11x17 ratio */
/* max-height: 598px; */
}
}
@media screen and (orientation: portrait) and (max-width:375px) {
body {
transform-origin: top left;
transform: scale(0.307);
max-height: 648px;
/* 11x17 ratio */
/* max-height: 570px; */
}
}
@media screen and (orientation: portrait) and (max-width:320px) {
body {
transform-origin: top left;
transform: scale(0.265);
max-height: 553px;
/* 11x17 ratio */
/* max-height: 496px; */
}
}
/* Landscape */
@media screen and (orientation: landscape) and (max-width:1200px) {
body {
transform-origin: top left;
transform: scale(0.98);
max-height: 1840px;
/* 11x17 ratio */
/* max-height: 1840px; */
}
}
@media screen and (orientation: landscape) and (max-width:1180px) {
body {
transform-origin: top left;
transform: scale(0.97);
max-height: 1814px;
/* 11x17 ratio */
/* max-height: 1814px; */
}
}
@media screen and (orientation: landscape) and (max-width:1080px) {
body {
transform-origin: top left;
transform: scale(0.89);
max-height: 1665px;
/* 11x17 ratio */
/* max-height: 1665px; */
}
}
@media screen and (orientation: landscape) and (max-width:1024px) {
body {
transform-origin: top left;
transform: scale(0.845);
max-height: 1580px;
/* 11x17 ratio */
/* max-height: 1580px; */
}
}
@media screen and (orientation: landscape) and (max-width:896px) {
body {
transform-origin: top left;
transform: scale(0.74);
max-height: 1384px;
/* 11x17 ratio */
/* max-height: 1384px; */
}
}
@media screen and (orientation: landscape) and (max-width:844px) {
body {
transform-origin: top left;
transform: scale(0.695);
max-height: 1300px;
/* 11x17 ratio */
/* max-height: 1300px; */
}
}
@media screen and (orientation: landscape) and (max-width:812px) {
body {
transform-origin: top left;
transform: scale(0.67);
max-height: 1253px;
/* 11x17 ratio */
/* max-height: 1253px; */
}
}
@media screen and (orientation: landscape) and (max-width:736px) {
body {
transform-origin: top left;
transform: scale(0.605);
max-height: 1132px;
/* 11x17 ratio */
/* max-height: 1132px; */
}
}
@media screen and (orientation: landscape) and (max-width:667px) {
body {
transform-origin: top left;
transform: scale(0.55);
max-height: 1029px;
/* 11x17 ratio */
/* max-height: 1029px; */
}
}
@media screen and (orientation: landscape) and (max-width:568px) {
body {
transform-origin: top left;
transform: scale(0.465);
max-height: 870px;
/* 11x17 ratio */
/* max-height: 870px; */
}
}
</style>
<!-- End responsive adjustments -->
<!-- Begin shared CSS values -->
<style id="shared-css">
.t {
transform-origin: bottom left;
z-index: 2;
position: absolute;
white-space: pre;
overflow: visible;
line-height: 1.5;
}
.text-container {
white-space: pre;
}
@supports (-webkit-touch-callout: none) {
.text-container {
white-space: normal;
}
}
/* SVG Colour Fill */
.g0 {
fill: #000;
}
.g1 {
fill: #292929;
}
.g2 {
fill: none;
stroke: #292929;
stroke-width: 0.606;
stroke-miterlimit: 10;
}
.g3 {
fill: #AF2126;
}
.g4 {
fill: none;
stroke: #AF2126;
stroke-width: 0.606;
stroke-miterlimit: 10;
}
/* Align from right */
.exhibitionDate,
.OpeningDate {
right: 55px !important
}
</style>
<!-- End shared CSS values -->
<!-- Begin Schema Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
// Édifice Belgo
"@type": "Place",
"name": "Édifice Belgo",
"description": "The largest concentration of contemporary art galleries, art centers, and artist studios in Quebec.",
"alternateName": "Belgo Building",
"containsPlace": [
"Espace St-Jean / Art contemporain",
"Skol",
"Galerie B-312",
"Patel Brown",
"McBride Contemporain",
"Chiguer Art Contemporain",
"Arprim",
"Atelier d'art photographique Jean-Claude Lussier",
"Galerie POPOP",
"CIRCA art actuel",
"SBC Galerie d'art contemporain",
"Galeries Bellemare Lambert",
"Galerie Hugues Charbonneau"
],
"isAccessibleForFree": true,
"keywords": "belgo, galerie d'art, art gallery, exhibition, exposition, artist, art, art exhibition, visual art, belgo Montreal",
"address": {
"@type": "PostalAddress",
"streetAddress": "372, rue Sainte-Catherine Ouest",
"addressLocality": "Montréal",
"addressRegion": "Québec",
"postalCode": "H3B 1A2",
"addressCountry": "Canada"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "45.5057",
"longitude": "73.5671"
},
"hasMap": "https://goo.gl/maps/wfwEz1tn2v9MZLQP7",
//"openingHours": "Mo 07:00-21:00 Tu 07:00-21:00 We 07:00-21:00 Th 07:00-21:00 Fr 07:00-21:00 Sa 07:00-18:00 Su 07:00-18:00",
"telephone": "+1 (514) 861-0305",
"url": "http://belgo.art/"
},
// Espace St-Jean
{
"location": [
{
"@context": "https://schema.org",
"@type": "ArtGallery",
"name": "Espace St-Jean / Art contemporain",
"url": "https://espacestjean.com",
"priceRange": "$$$$",
"containedInPlace ": "Édifice Belgo",
// "logo": "https://espacestjean.com/images/logotype-square.png",
// "image": "https://espacestjean.com/images/Espacestjean-hero-image.jpg",
"description": "Contemporary art gallery and artist studio located in the Belgo building, in the heart of the Quartier des spectacles in Montréal.",
"address": {
"@type": "PostalAddress",
"streetAddress": "372, Rue Sainte-Catherine Ouest, Suite 521",
"addressLocality": "Montréal",
"addressRegion": "Québec",
"postalCode": "H3B 1A2",
"addressCountry": "Canada"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "45.5057",
"longitude": "73.5671"
},
"hasMap": "https://goo.gl/maps/uMPZ3ZFtHKPEJn3j7",
"openingHours": "We 12:00-17:00 Th 12:00-17:00 Fr 12:00-17:00 Sa 12:00-17:00",
"telephone": "+1 (514) 965-1579"
}
]
},
// SKOL
{
"location": [
{
"@context": "https://schema.org",
"@type": "ArtGallery",
"name": "Skol",
"url": "https://skol.ca",
"containedInPlace ": "Édifice Belgo",
"address": {
"@type": "PostalAddress",
"streetAddress": "372, rue Sainte-Catherine Ouest, suite 314",
"addressLocality": "Montréal",
"addressRegion": "Québec",
"postalCode": "H3B 1A2",
"addressCountry": "Canada"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "45.5057",
"longitude": "73.5671"
},
"hasMap": "https://goo.gl/maps/9brSmHpWRd8Z3nf57",
"openingHours": "Tu 12:00-17:30 We 12:00-17:30 Th 12:00-17:30 Fr 12:00-17:30 Sa 12:00-17:30",
"telephone": "+1 (514) 398-9322"
}
]
},
// Galerie B-312
{
"location": [
{
"@context": "https://schema.org",
"@type": "ArtGallery",
"name": "Galerie B-312",
"url": "https://galerieb312.ca",
"containedInPlace ": "Édifice Belgo",
"address": {
"@type": "PostalAddress",
"streetAddress": "372, rue Sainte-Catherine Ouest, suite 403",
"addressLocality": "Montréal",
"addressRegion": "Québec",
"postalCode": "H3B 1A2",
"addressCountry": "Canada"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "45.5057",
"longitude": "73.5671"
},
"hasMap": "https://goo.gl/maps/Xtvmn26JVyPrhY8q9",
"openingHours": "Tu 12:00-17:00 We 12:00-17:00 Th 12:00-17:00 Fr 12:00-17:00 Sa 12:00-17:00",
"telephone": "+1 (514) 874-9423"
}
]
},
// Patel Brown
{"location": [
{
"@context": "https://schema.org",
"@type": "ArtGallery",
"name": "Patel Brown",
"url": "https://patelbrown.com",
"priceRange": "$$$$",
"containedInPlace ": "Édifice Belgo",
"address": {
"@type": "PostalAddress",
"streetAddress": "372, rue Sainte-Catherine Ouest, suite 410",
"addressLocality": "Montréal",
"addressRegion": "Québec",
"postalCode": "H3B 1A2",
"addressCountry": "Canada"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "45.5057",
"longitude": "73.5671"
},
"hasMap": "https://goo.gl/maps/79Dce7EH5VpjjdeX6",
"openingHours": "We 12:00-17:00 Th 12:00-17:00 Fr 12:00-17:00 Sa 12:00-17:00",
"telephone": "+1 (514) 868-9688"
}
]
},
// McBride Contemporain
{
"@type": "Event",
"name": "Affinités poreuses",
// "alternateName": "",
"startDate": "2023-09-14",
"endDate": "2023-10-28",
// "image": "https://artlogic-res.cloudinary.com/w_1200,c_limit,f_auto,fl_lossy,q_auto/ws-mcbridecontemporain/usr/images/exhibitions/group_images_override/44/jim-holyoak-2022-wandering-gargantuan-mcbride-contemporain-cropped-1.01.19-pm.jpg",
"url": "https://mcbridecontemporain.com/exhibitions/46-michelle-bui-affinites-poreuses/",
"performer": [
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Michelle",
"familyName": "Bui"
}
],
"location": [
{
"@context": "https://schema.org",
"@type": "ArtGallery",
"name": "McBride Contemporain",
"url": "http://mcbridecontemporain.com",
"priceRange": "$$$$",
"containedInPlace ": "Édifice Belgo",
"address": {
"@type": "PostalAddress",
"streetAddress": "372, rue Sainte-Catherine Ouest, suite 414",
"addressLocality": "Montréal",
"addressRegion": "Québec",
"postalCode": "H3B 1A2",
"addressCountry": "Canada"
},
"hasMap": "https://goo.gl/maps/EBoeTitleNameZKpDk6DNjd7",
"openingHours": "We 11:00-17:00 Th 11:00-17:00 Fr 11:00-17:00 Sa 11:00-17:00",
"telephone": "+1 (514) 878-0940",
"geo": {
"@type": "GeoCoordinates",
"latitude": "45.5057",
"longitude": "73.5671"
}
}
]
},
// Chiguer Art Contemporain
{
"@type": "Event",
"name": "F.UTILIS",
// "alternateName": "",
"startDate": "2023-10-05",
"endDate": "2023-10-28",
"image": "https://chiguerartcontemporain.com/app/uploads/2023/09/gagnon-futilis-2023-scaled.jpg",
"url": "https://chiguerartcontemporain.com/expositions/f-utilis-2023/",
"performer": [
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Claudie",
"familyName": "Gagnon"
}
],
"location": [
{
"@context": "https://schema.org",
"@type": "ArtGallery",
"name": "Chiguer Art Contemporain",
"url": "http://chiguerartcontemporain.com",
"priceRange": "$$$$",
"containedInPlace ": "Édifice Belgo",
"address": {
"@type": "PostalAddress",
"streetAddress": "372, rue Sainte-Catherine Ouest, suite 416",
"addressLocality": "Montréal",
"addressRegion": "Québec",
"postalCode": "H3B 1A2",
"addressCountry": "Canada"
},
// "hasMap": "https://goo.gl/maps/EBoeTitleNameZKpDk6DNjd7",
"openingHours": "We 12:00-17:00 Th 12:00-17:00 Fr 12:00-17:00 Sa 12:00-17:00",
// "telephone": "+1 (514) 878-0940",
"geo": {
"@type": "GeoCoordinates",
"latitude": "45.5057",
"longitude": "73.5671"
}
}
]
},
// Arprim
{
"@type": "Event",
"name": "The Margin Maker",
// "alternateName": "",
"startDate": "2023-09-14",
"endDate": "2023-10-21",
// "image": "https://",
// "url": "https://",
"performer": [
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Pascaline",
"familyName": "Knight"
},
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Max",
"familyName": "Lupo"
}
],
"location": [
{
"@context": "https://schema.org",
"@type": "ArtGallery",
"name": "Arprim",
"url": "http://arprim.org",
"priceRange": "$$$$",
"containedInPlace ": "Édifice Belgo",
"address": {
"@type": "PostalAddress",
"streetAddress": "372, rue Sainte-Catherine Ouest, suite 426",
"addressLocality": "Montréal",
"addressRegion": "Québec",
"postalCode": "H3B 1A2",
"addressCountry": "Canada"
},
"hasMap": "https://goo.gl/maps/BsxxhkMdRbscHtPc7",
"openingHours": "We 12:00-17:00 Th 12:00-18:00 Fr 12:00-17:00 Sa 12:00-17:00",
"telephone": "+1 (514) 525-2621",
"geo": {
"@type": "GeoCoordinates",
"latitude": "45.5057",
"longitude": "73.5671"
}
}
]
},
// Atelier d'art photographique JCL
{
"@type": "Event",
"name": "Flore",
"startDate": "2023-08-21",
"endDate": "2023-10-01",
// "image": "https://",
"url": "https://jeanclaudelussier.com",
"performer": [
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Jean-Claude",
"familyName": "Lussier"
}
],
"location": [
{
"@context": "https://schema.org",
"@type": "ArtGallery",
"name": "Atelier d'art photographique",
"alternateName": "Jean-Claude Lussier",
"url": "https://jeanclaudelussier.com",
"priceRange": "$$$$",
"containedInPlace ": "Édifice Belgo",
"address": {
"@type": "PostalAddress",
"streetAddress": "372, rue Sainte-Catherine Ouest, suite 427",
"addressLocality": "Montréal",
"addressRegion": "Québec",
"postalCode": "H3B 1A2",
"addressCountry": "Canada"
},
"hasMap": "https://goo.gl/maps/gNMNBr6npv9iPsKW7",
"openingHours": "Tu 11:00-16:00 We 11:00-16:00 Th 11:00-16:00",
"telephone": "+1 (514) 993-9226",
"geo": {
"@type": "GeoCoordinates",
"latitude": "45.5057",
"longitude": "73.5671"
}
}
]
},
// CIRCA
{
"@type": "Event",
"name": "Exposition bénéfice annuelle",
// "alternateName": "",
"startDate": "2023-09-14",
"endDate": "2023-10-21",
// "image": "https://",
// "url": "https://",
// "performer": [
// {
// "@context": "https://schema.org",
// "@type": "Person",
// "name": "Dan",
// "familyName": "Brault"
// }
// ],
"location": [
{
"@context": "https://schema.org",
"@type": "ArtGallery",
"name": "CIRCA art actuel",
"url": "http://circa-art.com",
"priceRange": "$$$$",
"containedInPlace ": "Édifice Belgo",
"address": {
"@type": "PostalAddress",
"streetAddress": "372, rue Sainte-Catherine Ouest, suite 444",
"addressLocality": "Montréal",
"addressRegion": "Québec",
"postalCode": "H3B 1A2",
"addressCountry": "Canada"
},
"hasMap": "https://goo.gl/maps/K2PRHHULqMqN73VTA",
"openingHours": "We 12:00-17:30 Th 12:00-17:30 Fr 12:00-17:30 Sa 12:00-17:30",
"telephone": "+1 (514) 393-8248",
"geo": {
"@type": "GeoCoordinates",
"latitude": "45.5057",
"longitude": "73.5671"
}
}
]
},
// Bellemare Lambert
{
"@type": "Event",
"name": "Flâner et faire surface",
"startDate": "2023-09-09",
"endDate": "2023-10-14",
"image": "http://www.bellemarelambert.com/sites/default/files/exposition/bellemarelambert-stephanelarue-expo2023.jpg",
"url": "http://www.bellemarelambert.com/fr/exposition/stephane-la-rue-flaner-faire-surface",
"performer": [
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Stéphane",
"familyName": "La Rue"
}
],
"location": [
{
"@context": "https://schema.org",
"@type": "ArtGallery",
"name": "Galeries Bellemare Lambert",
"alternateName": "Galeries Roger Bellemare et Christian Lambert",
"url": "http://www.bellemarelambert.com",
"priceRange": "$$$$",
"containedInPlace ": "Édifice Belgo",
"address": {
"@type": "PostalAddress",
"streetAddress": "372, rue Sainte-Catherine Ouest, suite 502",
"addressLocality": "Montréal",
"addressRegion": "Québec",
"postalCode": "H3B 1A2",
"addressCountry": "Canada"
},
"hasMap": "https://goo.gl/maps/ArtistNameMg4puBghWG3qYY7",
"openingHours": "Tu 12:00-17:00 We 11:00-17:00 Th 11:00-17:00 Fr 11:00-17:00 Sa 11:00-17:00",
"telephone": "+1 (514) 871-0319",
"geo": {
"@type": "GeoCoordinates",
"latitude": "45.5057",
"longitude": "73.5671"
}
}
]
},
// SBC Galerie d'art
{
"@type": "Event",
"name": "L'arbre blessé",
"alternateName": "The wounded tree",
"startDate": "2023-09-14",
"endDate": "2023-10-28",
"image": "https://static.wixstatic.com/media/2b2fa6_d556f1659a9248c4a6d7128ea8f35aca~mv2.jpg/v1/fill/w_1960,h_1102,al_c,q_90,usm_0.66_1.00_0.01,enc_auto/2b2fa6_d556f1659a9248c4a6d7128ea8f35aca~mv2.jpg",
"url": "https://https://www.sbcgallery.ca/",
"performer": [
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Livia",
"familyName": "Daza-Paris"
}
],
"location": [
{
"@context": "https://schema.org",
"@type": "ArtGallery",
"name": "SBC Galerie d'art contemporain",
"alternateName": "SBC Gallery of Contemporary Art",